首页 > 代码库 > SpringMvc错误:HTTP Status 500 - Request processing failed; nested exception is org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.ReflectionException: There is n

SpringMvc错误:HTTP Status 500 - Request processing failed; nested exception is org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.ReflectionException: There is n

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类名了

 

SpringMvc错误:HTTP Status 500 - Request processing failed; nested exception is org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.ReflectionException: There is n