mybatis
impl柴猿滚滚
发布的博客文章多为个人学习、实战的成果。
如果大佬发现文章错误欢迎指出,可以评论或者私信探讨相关内容。
看了小编的文章有所收获的话请多多支持,点个关注!持续更新哈…谢谢!
展开
-
There is no getter for property named ‘xxx‘ in ‘class java.lang.String‘的解决方案之一
执行异常:org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named ‘xxx’ in ‘class java.lang.String’解决方案一mybatis.xml文件的方法参数类型是parameterType="java.lang.String"的时候需要在M原创 2022-04-26 22:22:19 · 1764 阅读 · 0 评论 -
使用callSettersOnNulls配置解决数据库sql字段为空值不返回的问题
今天开发联调的时候发现了这样一个问题:Mybatis的sql查询语句select一些字段,resultType返回类型是Map,用sql在数据库中执行有返回,不过值是null,但是用postman测试接口数据返回的时候,这个字段却不见了,导致前端接收字段Key和Value丢失。根据业务需求,我们想返回所有字段,包括空值字段。查阅资料,需要用到callSettersOnNulls的相关配置。方法一:在application.properties文件中添加配置mybatis.configuration.原创 2022-04-02 16:25:48 · 5625 阅读 · 1 评论 -
TypeException: Could not resolve type alias ‘XXXEntity‘
Caused by: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias‘XXXEntity’. Cause: java.lang.ClassNotFoundException: Cannot find class: XXXEntityMybatis常见错误之一:检查错误发原创 2021-09-03 10:43:30 · 774 阅读 · 0 评论