You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
org.apache.ibatis.type.TypeException: Could not set parameters for mapping: ParameterMapping{property='originalOrderQuantityForPartialOrder', 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 non null for parameter #6 with JdbcType null . Try setting a different JdbcType for this parameter or a different configuration property. Cause: java.sql.SQLException: Invalid argument value: java.io.NotSerializableException // 🎯
... 88 common frames omitted
Caused by: org.apache.ibatis.type.TypeException: Error setting non null for parameter #6 with JdbcType null . Try setting a different JdbcType for this parameter or a different configuration property. Cause: java.sql.SQLException: Invalid argument value: java.io.NotSerializableException // 🎯
... 91 common frames omitted
Caused by: com.mysql.cj.exceptions.WrongArgumentException: Invalid argument value: java.io.NotSerializableException
... 94 common frames omitted
Caused by: java.io.NotSerializableException: java.util.Optional // 🎯
... 96 common frames omitted
2023-07-15T21:30:19.059+09:00 WARN 87194 --- [nio-8080-exec-1] .m.m.a.ExceptionHandlerExceptionResolver : Resolved [org.mybatis.spring.MyBatisSystemException]
에러 해석
originalOrderQuantityForPartialOrder 필드를 직렬화 하지 못해서 발생한 이슈이다.
What
에러 내용
에러 해석
Why
How
Optional<Integer>
대신Integer
사용하기Reference
The text was updated successfully, but these errors were encountered: