org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'create_time' in 'class com.sky.entity.Setmeal'
时间: 2023-12-30 19:22:09 浏览: 104
根据提供的引用内容,出现该错误的原因是在com.sky.entity.Setmeal类中没有名为'create_time'的属性的getter方法。解决该问题的方法是在Setmeal类中添加一个名为'create_time'的属性的getter方法。
以下是解决该问题的代码示例:
```java
public class Setmeal {
private Date create_time;
public Date getCreate_time() {
return create_time;
}
public void setCreate_time(Date create_time) {
this.create_time = create_time;
}
}
```
相关问题
org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'create_user' in 'class com.sky.entity.Dish'
这个异常的意思是在类com.sky.entity.Dish中没有名为'create_user'的属性的getter方法。这通常是因为在Mybatis plus的查询条件中使用了一个不存在的属性。请检查你的查询条件是否正确,确保使用的属性名称与实体类中的属性名称一致。
1. 如何正确使用Mybatis plus的查询条件?
2. 如何在Mybatis plus中处理查询条件中的不存在的属性?
3. 如何在Mybatis plus中自定义查询条件?
org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'creatTime' in 'class com.sky.entity.Setmeal'
异常信息"org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'creatTime' in 'class com.sky.entity.Setmeal'"表示在类com.sky.entity.Setmeal中没有名为'creatTime'的属性的getter方法。产生这个错误的原因可能是在Mybatis的映射文件中使用了该属性,但实际上该属性不存在或没有getter方法。
阅读全文