org.apache.ibatis.reflection.ReflectionException: There is no getter for property named XXX 异常的解决办法。
2021-01-15 17:14
标签:color strong cti core sql语句 命名 异常 col log 今天在用Mybatis的时,写测试验证插入操作时出现错误org.apache.ibatis.reflection.ReflectionException: There is no getter for property named XXX。 根据字面意思就是我没有为XXX属性写getter方法,课我检查实体类却未发现有漏写情况出现,遂检查配置文件。 我在我自己的mybatis-config.xml文件中发现一行代码: 上图是Mybatis官方文档的解释,也就是如果在XML文件中提前规定了把数据库中字段自动对应到Java中的驼峰命名(如果没有上面那行代码则只需要把实体类中的属性名称与数据库一一对应,但这样不利于命名规范)。 这时检查自己编写SQL语句的配置文件,果然,实体类的一个属性createTime在配置的时候写错了(也就是和实体类中的名称不同了,如下) org.apache.ibatis.reflection.ReflectionException: There is no getter for property named XXX 异常的解决办法。(亲测,一次成功!) #Mybatis 标签:color strong cti core sql语句 命名 异常 col log 原文地址:https://www.cnblogs.com/centurybbx/p/13390062.htmlsetting name="mapUnderscoreToCamelCase" value="true"/>
insert id="addBlog" parameterType="blog">
insert into blog (id,title,author,create_time,views)
values (#{id},#{title},#{author},#{createTime},#{views});
insert>
文章标题:org.apache.ibatis.reflection.ReflectionException: There is no getter for property named XXX 异常的解决办法。
文章链接:http://soscw.com/index.php/essay/42335.html