오류관리 32

MyBatis LocalDate

문제 증상 : LocalDate 형식을 사용 할때 따옴표가 붙지 않는다. Java > LocalDate startDate; xml > Select * From Table Where startDate = #{startDate} 원하는 결과 > Select * From Table Where startDate = '2020-06-01' 실행된 결과 > Select * From Table Where startDate = 2020-06-01 ------------- 예상 원인 1. Mybatis 구 버전에서 java8의 java.time 형식을 지원하지 않는 문제가 있음, 이 것이 그 문제인가? (연관링크) 해결방안1) handler 추가하기 1-1) mybatis-typehandlers-jsr310 라이브러리 ..

Database 2021.03.24

[오류관리] Dbeaver Password Charset

Current charset is UTF-8. If password has been set using other charset, consider using option 'passwordCharacterEncoding' password charset이 달라서 발생한 현상, session 설정할때 driver setting에서 User Properties에 charset을 추가해준다. (아래 이미지 참고) + 이렇게 해결한건 1번 동일한 에러였는데 대부분은 password를 잘못 입력한 것이었다. host, username, password 잘 입력했는지 다시 확인할 것! https://github.com/dbeaver/dbeaver/issues/1843

오류관리 2019.10.02

nested exception is org.apache.ibatis.binding.BindingException: Parameter 'item' not found. Available parameters are [collection, list]

Mybatis Error nested exception is org.apache.ibatis.binding.BindingException: Parameter 'item' not found. Available parameters are [collection, list] item 은 foreach item에 선언한 변수 명 https://okky.kr/article/370218 org.mybatis mybatis 3.4.6 org.mybatis mybatis-spring 1.3.2 에서 에러남..원래 3.4.2 & 1.3.2 에서는 괜찮았음. http://blog.mybatis.org/2018/03/mybatis-346-released.html 원인 insert문에서 foreach + on duplicate..

오류관리 2018.03.20

[Tomcat Error] java.lang.ClassNotFoundException

오류 심각: Error configuring application listener of class org.springframework.web.context.ContextLoaderListenerjava.lang.ClassNotFoundException 오류 상황 maven을 사용하는 project인데 maven install 후 se로 설치한 eclipse를 ee로 재 설치하고 바로 server start. 오류 원인 http://ddoriya.tistory.com/entry/javalangClassNotFoundException-orgspringframeworkwebcontextContextLoaderListener 를 보니 maven 문제인것 같다.아마 eclipse를 재설치하고 maven 관련 설정..

오류관리 2016.11.30

[NPM] PEER DEPENDENCY? RC5?

아마 첫?오류 상황 Couldn't read dependencies 프록시문제? 해결방법제시1 / 해결방법제시2 peerdependency 추가안되서 생긴 문제? 해결방법제시3 script에 start안써서 생긴 문제? 해결방법제시4 해결방법제시1~4 모두 실패. 해결방법제시5try deleting the node_modules directory and all npm temporary files and directories, and then run npm install again. 해결방법제시5도 실패 안되................... 누가좀알려주세요..................... 버전충돌이라는 이야기도 있고 프록시 문제라는 이야기도 있고 소스상의 문제라는 이야기도 있고아직 원인규명 못함. ..

오류관리 2016.08.17
반응형