天天看点

org.apache.ibatis.ognl.ParseException: Encountered " <IDENT> "OR "" at line 1, column 17.

<if test="labelVo != null OR imagesVo != null">
           

将大写的OR修改为小写的or

<if test="labelVo != null or imagesVo != null">
           

继续阅读