- ORA-17004: 열 유형이 부적합합니다.
MyBatis를 쓰는데 에러가 발생하였다. 열 유형이 부적합하다고 한다.
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.type.TypeException: Could not set parameters for mapping: ParameterMapping{property='rawData.wayfId', mode=IN, javaType=class java.lang.Object, jdbcType=null, numericScale=null, resultMapId='null', jdbcTypeName='null', expression='null'}. Cause: org.apache.ibatis.type.TypeException: 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.SQLException: ORA-17004: 열 유형이 부적합합니다.: 1111
WAYF_ID라는 컬럼은 VARCHAR 타입인데, rawData.wayfId가 null이라 JdbcType이 맞지 않다고 한 것.
jdbcType을 컬럼 타입에 맞게 지정해주니 문제가 해결되었다.