728x90
반응형

Error 131

[Error][jQuery] each문으로 배열 push할 때 오류 (같은 값만 입력)

https://stackoverflow.com/questions/47847773/jquery-each-on-dom-element-push-in-array-error Jquery each on DOM element - Push in array error I try to use each() function on my DOM to get field dynamically added. But I hava a probleme with this code : var nouvelle_entree=new Object(); $('div[name="declaration-ligne-entree"]').each( stackoverflow.com push 할 객체를같이 초기화해주고 push 해야 한다.

Error 2023.04.20

[Error][lombok] json 타입으로 boolean parameter 사용시 에러

https://eclipse4j.tistory.com/343 json object 상호 변환시 lombok으로 인한 boolean 기본형 오류 오늘 옆 동료분이 restful 관련 json 변환시 boolean에 속성의 한 필드가 이럴경우 저럴경우 오류가 생기고 안생긴다고 한다. 대충 보니 이름 문제같은 느낌적인 느낌이 들고, 마침 다른 동료도 해당 eclipse4j.tistory.com https://velog.io/@joosing/jackson-boolean-isa-serialize-problem Jackson | boolean 타입의 isA 멤버의 직렬화 문제 Java 프로젝트에서 boolean 타입의 isUp 이라는 객체 멤버가 Jackson 라이브러리를 통해 JSON 문자열로 직렬화되면 필드 이..

Error 2023.04.17

[Error][MyBatis] ibatis.reflection.ReflectionException

https://yamea-guide.tistory.com/entry/Mybatis-getter-for-property-named-%EC%97%90%EB%9F%AC-%ED%95%B4%EA%B2%B0%EB%B0%A9%EB%B2%95 [Mybatis] getter for property named 에러 해결방법 간단하다 mybatis에 써놓은 쿼리중에 #{변수} yamea-guide.tistory.com https://velog.io/@developyoun/org.apache.ibatis.reflection.ReflectionException-There-is-no-getter-for-property-named-%EB%B3%80%EC%88%98-in-class-java.lang.%ED%83%80%EC%9E%85..

Error 2023.03.31

[ERROR][MyBatis] NumberFormatException: For input string: " "

https://haenny.tistory.com/233 [MyBatis] For input string: "문자" 오류 해결방법 오류 로그 Caused by: org.apache.ibatis.exceptions.PersistenceException: ### Error querying database. Cause: java.lang.NumberFormatException: For input string: "Y" ### Cause: java.lang.NumberFormatException: For input string: "Y" at org.apache.ibatis.ex haenny.tistory.com NumberFormatException: For input string: "N" 문자열을 사용할 때는 큰..

Error 2023.03.30

[Error] Request failed with status code 415

https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/415 415 Unsupported Media Type - HTTP | MDN The HTTP 415 Unsupported Media Type client error response code indicates that the server refuses to accept the request because the payload format is in an unsupported format. developer.mozilla.org parameter 방식이 json 방식으로 [ {"키" : "값"} ] 형태였는데 이 형태로 parameter를 보내지 않아서 오류가 났다. 결과적으로는 parameter 방식도 ..

Error 2023.02.16

[Error][jQuery] .on() 선택자 설정

$( '#dataTable' ).on('click', 'tbody tr',(evt)=>{ } $( '#dataTable' ). find('tbody tr').on('click',(evt)=>{ }' -> 이렇게 작성하면 실행되지 않음. childselector는 이벤트종류 뒤에 적어주면 된다. ( .on()함수 문법상 ) https://codedragon.tistory.com/5818 [jQuery] 이벤트 연결(event binding) - .on() 메소드 특징, on() 함수 형식, button의 id가 "btn"인 요소에 click 이벤트 연결(event binding)· .on() 메소드· .one() 메소드 .on() 메소드 특징· 선택한 요소에 어떤 타입의 이벤트라도 연결할 수 있습니다.· ..

Error 2023.02.14

[Error] 데이터 형식 varchar을(를) varbinary(으)로 암시적으로 변환할 수 없습니다

https://sonman.tistory.com/7 [MSSQL]데이터 형식 varchar을(를) varbinary(으)로 암시적으로 변환할 수 없습니다. XML에서 ISNULL이 안된 "데이터 형식 varchar을(를) varbinary(으)로 암시적으로 변환할 수 없습니다. " 란 오류에 대해 다룹니다. 위 와 같은 오류는 varchar타입에 binary형식의 데이터를 넣은 경우 발생합니다. 일단 오류가 발 sonman.tistory.com db에서는 null 값을 잘인식하지만 xml에서는 인식이 안되어 발생하는 오류 null값을 따로 처리해줘야한다. (CASE WHEN ISNULL(#{clsngYn ,jdbcType=VARCHAR},'') = '' THEN 'N' ELSE #{clsngYn ,jdb..

Error 2023.02.09

[Error][SPRING]The static method getClosingSearch(Map<String,Object>) from the type ClosingMngService should be accessed in a static way.

The static method getClosingSearch(Map) from the type ClosingMngService should be accessed in a static way. ClosingMngService 유형의 정적 메서드 getClosingSearch(Map)는 정적 방식으로 액세스해야 합니다. 자동생성으로 service 에 정적메서드로 메서드가 생성되어서 controller에서 액세스가 되지 않았던 오류였다.

Error 2023.02.08

[Error] Resolver error at paths./api/v1/*/*. post.parameters.0.schema.$refCould not resolve reference because of: Could not resolve pointer: /definitions/ */ * does not exist in document

Resolver error at paths./api/v1/*/*. post.parameters.0.schema.$ref Could not resolve reference because of: Could not resolve pointer: /definitions/ */ * does not exist in document 코드를 parameter로 받아서 삭제를 하는 로직이었다. 컨트롤러에서 @RequestParam 설정으로 해줬어야 되는데 ( param을 주소가 아닌 따로 받는 것으로 설정이 되어있었다.) @@pathvariable으로 설정해서 해당 오류가 발생하였다... 복붙을 하다가 실수를 하게된 것이었다.

Error 2023.01.16
728x90
반응형