오류관리

[오류관리] MyBatisSystemException Could not set parameters for mapping

k9e4h 2021. 6. 28. 11:21

 

org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.type.TypeException: Could not set parameters for mapping: ParameterMapping{property='__frch_item_626', mode=IN, javaType=class java.lang.String, jdbcType=null, numericScale=null, resultMapId='null', jdbcTypeName='null', expression='null'}. Cause: org.apache.ibatis.type.TypeException: Error setting non null for parameter #632 with JdbcType null . Try setting a different JdbcType for this parameter or a different configuration property. Cause: java.sql.SQLException: Could not set parameter at position 632

 

 

Mapper XML에서 주석처리한 코드의 파라미터에 null이 들어갔다. ( #{param2} 부분)

주석처리가 되어있음에도 불구하고 파라미터를 셋팅하나보다.

 

SELECT *
  FROM TABLE_NAME
 WHERE COLUMN1 = #{param1}
   AND COLUMN2 IN (
                    SELECT *
                      FROM TABLE_NAME_2
                  -- WHERE COLUMN3 = #{param2}
		)
반응형