공부
[Spring] Mybatis NumberformatException
승가비
2019. 10. 14. 16:55
728x90
// wrong
<if test="stringValue == 'Y'">
// fixed
<if test='stringValue == "Y"'>
[출처] http://t-ara72.blogspot.com/2013/10/mybatis-numberformatexception.html
728x90