Back/Mybatis

부적합한 열 유형: 1111(Mybatis)

밍꿔 2019. 9. 17. 14:40


반응형

 

Error setting null for parameter #10 with JdbcType OTHER . 

Try setting a different JdbcType for this parameter or a different jdbcTypeForNull configuration property. Cause: java.sql.SQLException: 부적합한 열 유형: 1111

 

*원인

#뒤에 붙은 번호의 파라미터값이 null 이기 때문에 이런 오류가 발생.

 

*수정안

Mybatis 쿼리문 내 파라미터에 jdbcType 을 추가해줍니다.

 

NM_TASK = #{nm_task, jdbcType=VARCHAR}
반응형