HTTP Status 500 - Request processing failed; nested exception is org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'ItemsCustom' in 'class com.mybatis.po.ItemsQueryVo'
<if test="ItemsCustom != null">
      <if test="itemsCustom.name != null and itemsCustom.name != ''">
          name like'%${itemsCustom.name}%'
      </if>
  </if>

原因是因为在在xml文件中把属性

itemsCustom写成
ItemsCustom类名了

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-08-30
  • 2021-08-30
  • 2022-12-23
  • 2021-11-11
  • 2021-10-22
猜你喜欢
  • 2021-11-04
  • 2021-10-03
  • 2021-05-28
  • 2021-12-13
  • 2021-05-27
  • 2021-12-06
  • 2021-08-23
相关资源
相似解决方案