解决Mybatis报错:org.apache.ibatis.reflection.ReflectionException: There is no getter for property named

Posted Recently 祝祝

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决Mybatis报错:org.apache.ibatis.reflection.ReflectionException: There is no getter for property named相关的知识,希望对你有一定的参考价值。

错误提示:

服务器处理发生异常:nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named ‘userTaskqueryDTO’ in ‘class com.lz.platform.trauma.api.interfaces.dto.task.UserTaskqueryDTO’

解决方式:

可能错误原因一:解决方法一:

DTO没有写getter/setter方法,需要添加上。SpringBoot在DTO上加@Data
@Data是一个Lombok提供的注解,可以自动为Java类生成一些常用的方法,包括getter、setter、toString、equals、hashCode等方法,从而简化Java类的编写。使用@Data注解可以让代码更加简洁,提高开发效率。

@Data
@ApiModel(value = "模糊查询列表")
public class UserTaskqueryDTO implements Serializable 
    private String idno;

    private String  Code;

    private String keyWord;

可能错误原因二:解决方法二,DAO文件上没有加上注入方法@Repository

DAO文件上需要加上@Repository
@Repository是Spring框架中的一个注解,用于标识一个类作为数据访问对象(DAO)的组件。它的作用是将DAO层的Bean标记为Spring容器中的Bean,并自动执行Bean的注册、依赖注入等操作。

可能错误原因三:解决方法三,JAVA中Mapper文件不识别#dto.propertyName语法,将dto.去掉

Mapper文件中方法DTO注入不能带上DTO名称。

错误Mapper:

 <select id="queryUserTraumaTaskList" resultType="com.lz.task.TraumaTask"  parameterType="com.lz.task.UserTaskqueryDTO">
        select * from   task t where 1=1
        <if test=" userTaskqueryDTO.no != null and  userTaskqueryDTO.no != ''">
            and t.NO = #userTaskqueryDTO.no
        </if>

        <if test="userTaskqueryDTO.keyWord != null and userTaskqueryDTO.keyWord !=''">
            and ( t.STERNO like concat( concat('%',#userTaskqueryDTO.keyWord),'%') or
            t.NAME like concat( concat('%',#userTaskqueryDTO.keyWord),'%') or
            t.IClass like concat( concat('%',#userTaskqueryDTO.keyWord),'%'))
        </if>

        order by t.date desc
    </select>

按照上边的写法会出现报错:
服务器处理发生异常:nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named ‘userTaskqueryDTO’ in ‘class com.lz.platform.trauma.api.interfaces.dto.task.UserTaskqueryDTO’

下边的写法才是正确的写法:
把DTO去掉之后,报错就消失了,加了DTO系统读取不到,去掉之后句好了

  <select id="queryUserTraumaTaskList" resultType="com.lz.task.TraumaTask"  parameterType="com.lz.task.UserTaskqueryDTO">
        select * from   task t where 1=1
        <if test=" no != null and  no != ''">
            and t.NO = #no
        </if>

        <if test="keyWord != null and keyWord !=''">
            and ( t.STERNO like concat( concat('%',#keyWord),'%') or
            t.NAME like concat( concat('%',#keyWord),'%') or
            t.IClass like concat( concat('%',#keyWord),'%'))
        </if>

        order by t.date desc
    </select>

错误原因:

在Mapper文件中,使用DTO(Data Transfer Object)来传递数据,可以将数据从Java代码传输到数据库,也可以将数据从数据库传输到Java代码。通常情况下,我们将DTO中的属性名与数据库表的列名进行对应,以便在Mapper文件中使用这些属性来构建SQL语句。

在使用DTO的属性名填充Mapper文件数据时,不需要在属性名前面添加DTO名称。这是因为DTO通常是一个Java类,而不是一个数据库表,它的属性名称是在Java类中定义的,而不是在数据库表中定义的。

在Mapper文件中,我们使用#propertyName来引用DTO的属性。如果我们在属性名前面添加了DTO名称,例如#dto.propertyName,则会导致语法错误,因为Mapper文件不能识别这个语法。

因此,在使用DTO的属性名填充Mapper文件数据时,应该只使用属性名本身,而不需要添加DTO名称。例如,如果DTO中有一个属性名为id,我们可以在Mapper文件中使用#id来引用这个属性,而不需要使用#dto.id。

注意:

出参和入参的类型不要弄错了
出参是一个list的话,resultType放的是list参数的类型。
例如:出参List ,resultType放的就是TraumaTask路径
出参List ,resultType放的就是java,util.lang

以上是关于解决Mybatis报错:org.apache.ibatis.reflection.ReflectionException: There is no getter for property named的主要内容,如果未能解决你的问题,请参考以下文章

Spring整合Mybatis报错解决之道

mybatis报错invalid types () or values ()解决方法

解决Mybatis报错Could not find resource mybatis-config.xml

mybatis报错invalid types () or values ()解决方法

java 解决MyBatis的不自动报错的问题

mybatis报错invalid types () or values ()解决方法