There is no getter for property named ‘XXX‘ in ‘class java.lang.String‘解决方法

使用mybatis模糊查询的时候,mapper的方法为:

List selectScientificBytitle(String title);//模糊查询

 

xml的写法是:

访问的时候出现报错:There is no getter for property named 'XXX' in 'class java.lang.String'

 

解决方法是将mapper里面的参数使用注解形式,不然是映射不到xml里面去的。

List selectScientificBytitle(@Param("title") String title);//模糊查询

 

这样一来,就可以解决!!!

你可能感兴趣的:(mybatis,mybatis,查询)