解决org.apache.ibatis.reflection.ReflectionException: There is no getter for property named异常

–>

今天写代码的时候,出现了一个错误:
Whitelabel Error Page
This application has no explicit mapping for /error, so you are seeing this as a fallback.

Thu Jun 11 16:24:17 CST 2020
There was an unexpected error (type=Internal Server Error, status=500).
nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named ‘gmt_create’ in ‘class com.lxl.community.model.Question’

这里的500表示,的就是语法错误,其实是就是我们的那个*,我的实体类的名称写错了。

之前错误的代码
@Insert(“insert into question (title,description,gmt_create,gmt_modified,creator,tag) values (#{title},#{description},#{gmt_create},#{gmt_modified},#{creator},#{tag})”)
void create(Question question);
改正过后的代码:
@Insert(“insert into question (title,description,gmt_create,gmt_modified,creator,tag) values (#{title},#{description},#{gmtCreate},#{gmtModified},#{creator},#{tag})”)
void create(Question question);

因为我的数据库里面的定义的字段名和我的实例类的字段名有所修改,所以:改成Question实体里面的字段名即可

本文来源 互联网收集,文章内容系作者个人观点,不代表 本站 对观点赞同或支持。如需转载,请注明文章来源,如您发现有涉嫌抄袭侵权的内容,请联系本站核实处理。

© 版权声明

相关文章