There is no getter for property named 'goodsId' in 'class com.baomidou.mybatisplus.core.conditions.query.Lambda
时间: 2023-09-25 22:13:29 浏览: 68
这个错误通常发生在使用 Mybatis-Plus 的 Lambda 查询时,因为在 Lambda 表达式中使用了一个不存在的属性名。
首先,你需要检查你的实体类中是否存在名为 `goodsId` 的属性以及对应的 getter 方法。如果不存在,你需要在实体类中添加该属性和 getter 方法。
如果实体类中已经存在该属性和 getter 方法,那么可能是因为你在使用 Lambda 查询时指定了错误的属性名,你需要仔细检查 Lambda 表达式中的属性名是否正确。另外,也可以尝试使用 Mybatis-Plus 提供的 `column` 方法来映射实体类属性和数据库表字段,以避免属性名与数据库表字段名不一致的问题。例如:
```java
LambdaQueryWrapper<User> wrapper = new LambdaQueryWrapper<>();
wrapper.eq(User::getGoodsId, 123);
// 或者使用 column 方法映射属性和字段名
wrapper.eq(User::getGoodsId, "goods_id", 123);
```
希望这个回答能够帮助到你!
相关问题
There is no getter for property named 'phoneInput' in 'class com.baomidou.mybatisplus.core.conditions.query.QueryWrapper
根据提供的引用内容,出现"There is no getter for property named 'phoneInput' in 'class com.baomidou.mybatisplus.core.conditions.query.QueryWrapper"的错误可能有以下几种解决方案:
1. 检查实体类中是否存在名为'phoneInput'的属性,并且该属性是否有对应的getter方法。如果不存在,可以添加该属性和对应的getter方法。
2. 检查是否在MyBatis的映射文件中正确配置了'phoneInput'属性的映射关系。确保映射文件中的字段名与实体类中的属性名一致。
3. 检查是否在查询条件中正确使用了'phoneInput'属性。如果是在查询条件中使用该属性,确保查询条件的语法正确,并且在查询语句中正确引用了'phoneInput'属性。
4. 检查是否导入了正确的包。根据引用中的解决方案,确保导入的包是MyBatis下的,而不是Spring Boot下的。
5. 检查是否正确使用了@param注解。根据引用中的解决方案,确保在拼接的SQL语句中正确使用了@param注解,并且使用了正确的参数名。
6. 检查是否正确使用了QueryWrapper类。确保在创建QueryWrapper对象时,正确传入了对应的实体类。
以下是一个可能的解决方案示例:
```java
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
// 创建QueryWrapper对象
QueryWrapper<User> queryWrapper = new QueryWrapper<>();
queryWrapper.eq("phoneInput", "1234567890");
// 执行查询操作
List<User> userList = userDao.selectList(queryWrapper);
```
There is no getter for property named 'id' in 'class com.baomidou.mybatisplus.core.conditions.query.QueryWrapper'
引用\[1\]、\[2\]和\[3\]中提到的错误信息都是关于MyBatis中使用${}或#{}时出现的ReflectionException异常,提示在指定的类中没有名为'id'的属性的getter方法。根据你提供的问题背景和错误信息,你遇到的问题是在com.baomidou.mybatisplus.core.conditions.query.QueryWrapper类中没有名为'id'的属性的getter方法。这个错误可能是由于你在使用QueryWrapper时,使用了一个不存在的属性名'id'导致的。请检查你的代码,确保在QueryWrapper中使用的属性名是正确的。
#### 引用[.reference_title]
- *1* [解决mybatis中用${}或#{}报错:ReflectionException: There is no getter for property named XX class](https://blog.csdn.net/Caojian_0/article/details/127082591)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control_2,239^v3^insert_chatgpt"}} ] [.reference_item]
- *2* [mybatis 报There is no getter for property named 'id' in 'class java.lang.Integer' 此类错误-解决方式](https://blog.csdn.net/qq_35298582/article/details/101002068)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control_2,239^v3^insert_chatgpt"}} ] [.reference_item]
- *3* [org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'id' in 'cla](https://blog.csdn.net/broccoli2/article/details/79224111)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control_2,239^v3^insert_chatgpt"}} ] [.reference_item]
[ .reference_list ]
阅读全文