오류관리 77

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

Input length must be multiple of 16 when decrypting with padded cipher

[오류] Input length must be multiple of 16 when decrypting with padded cipher 에러 상황 다른 항목에는 다 되는데 어떤 특정 데이터에서만 안됨.암호화는 됐는데 복호화가 안됨. 에러 원인 복호화 키가 맞지 않음 case 1. 컬럼사이즈가 작아서 암호화된 데이터가 온전히 저장되지 않고 짤려서 저장되어 복호화 할수없는 문제였음. 컬럼 사이즈 늘리는 것으로 해결 case 2. 암호화 되어있지 않은 것을 복호화하려고함. 에러 해결 복호화 다시함

오류관리 2018.02.14

[Http] Request method 'POST' not supported

Request method 'POST' not supported 오류가 뜨면 받는쪽 Controller 부분에서 @RequestMapping(value = "/", method = RequestMethod.POST) @RequestMapping(value = "/", method = RequestMethod.GET) 이부분이 달라서 그런건데 보내는방식에 맞게 수정해주면 된다. 둘다쓰고싶으면 @RequestMapping(value = "/", method = {RequestMethod.POST,RequestMethod.GET}) 이런식으로도 사용가능하다. (출처) ////////////////////////////////////////////////////////////////////////////////..

오류관리 2018.02.13
반응형