반응형


MyBatis 사용시 에러 발생.


Error setting null for parameter #2 with JdbcType OTHER . Try setting a different JdbcType for this parameter or a different jdbcTypeForNull configuration property. Cause: java.sql.SQLFeatureNotSupportedException: The data type 'OTHER' is not supported.

; SQL []; The data type 'OTHER' is not supported.; nested exception is java.sql.SQLFeatureNotSupportedException: The data type 'OTHER' is not supported.


2번째 파라미터값이 null 이라서 문제가 생김.


해결 방안.

query 문에 jdbcType 추가.

ex) ADDRESS = #{address, jdbcType=VARCHAR}




반응형

+ Recent posts