执行异常:org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named ‘xxx’ in ‘class java.lang.String’
解决方案一
mybatis.xml文件的方法参数类型是parameterType="java.lang.String"的时候需要在Mapper.java文件的方法里加注解@Param传参
String getName(@Param("name") String name);