mybatis-plus返回map⾃动转驼峰配置操作
mybatis-plus返回map⾃动转驼峰配置object-wrapper-factory不⽣效问题解决;配置map-underscore-to-camel-case: true不⽣效问题解决很多时候我们⼯作中查询很多字段的时候⼀般是返回⼀个VO来接收,这个时候我们只要在yml中配置了
map-underscore-to-camel-case: true
就会⾃动将查询数据库的字段带下划线的属性转成对应实体类VO中驼峰命名的属性。
但是会经常有这种场景:例如我们只查询2个字段要返回给前端,这时候我们还需要新建⼀个VO,很是⿇烦,我们只需要查询返回⼀个Map来接收就可以了 ,但是返回到控制台的属性结果却不是驼峰命名。
如下图,这就是为何你yml中配置了map-underscore-to-camel-case: true也不⽣效的原因。(对返回map不⽣效
怎么解决这个问题呢?解决⽅案:
mybatis-plus其实已经帮我们写好了MybatisMapWrapperFactory类(开启返回map结果集的下划线转驼峰)
在mybatis-plus-extension.jar下有⼀个类
sion.MybatisMapWrapperFactory
和
sion.handlers.MybatisMapWrapper
mybatis-plus⾃带map下划线转驼峰配置类
重点:
我们只需要在yml中配置⼀下object-wrapper-factory指定MybatisMapWrapperFactory就可以了
mybatis-plus: mapper-locations: classpath:mapper/*l
configuration: call-setters-on-nulls: true
map-underscore-to-camel-case: true
object-wrapper-factory: sion.MybatisMapWrapperFactory
然后启动项⽬,我去竟然报错了:
***************************
APPLICATION FAILED TO START
***************************
Description:
Failed to bind properties under 'figuration.object-wrapper-factory' to
org.flection.wrapper.ObjectWrapperFactory:
Property: figuration.object-wrapper-factory
Value: sion.MybatisMapWrapperFactory
Origin: class path resource [l]:99:29
Reason: No converter found capable of converting from type [java.lang.String] to type
[org.flection.wrapper.ObjectWrapperFactory]
Action:
Update your application's configuration
启动报错详情
提⽰不到合适的converter将string转化为ObjectWrapperFactory对象。这⼜是什么⿁呢?
看字⾯意思,应该是缺少对应的converter,难道mybatis没有提供这个converter吗?
spring framework是什么框架的简直有点坑。⽽且springboot也不提供⽤反射机制来构件对象的converter?
是的,springboot没有这样做。通过查资料得知springboot提供了⼀种扩展机制,允许你来写⼀个converter来完成你想要的转换⼯作。于是,我⼜写了⼀个converter:
package com.fig;
import org.flection.wrapper.ObjectWrapperFactory;
import org.t.properties.ConfigurationPropertiesBinding;
import verter.Converter;
import org.springframework.stereotype.Component;
@Component
@ConfigurationPropertiesBinding
public class ObjectWrapperFactoryConverter implements Converter<String,ObjectWrapperFactory> {
@Override
public ObjectWrapperFactory convert(String source) {
try {
return (ObjectWrapperFactory) Class.forName(source).newInstance();
} catch (InstantiationException | IllegalAccessException | ClassNotFoundException e) {
throw new RuntimeException(e);
}
}
}
再次启动 ok不报错了,这时候来看看结果是不是返回map⾃动转成驼峰命名。果然⾃动转了
返回map⾃动转驼峰命名
第⼆种⽅式:如果嫌配置Converter⿇烦,不⾃定义Converter,那就不能在yml中配置
object-wrapper-factory: sion.MybatisMapWrapperFactory
教你第⼆种⽅式:直接这样配置就搞定了
@Bean
public ConfigurationCustomizer mybatisConfigurationCustomizer(){
return new ConfigurationCustomizer() {
@Override
public void customize(org.apache.ibatis.session.Configuration configuration) {
configuration.setObjectWrapperFactory(new MybatisMapWrapperFactory());
}
};
}
补充知识:解决spring boot整合mybatis时返回map value为空字段不显⽰
这两天公司从YMP框架换到了spring boot 在整合mybatis时多表联查,返回map的时候,发现map⾥⾯的value是空的情况下
字段也不显⽰了导致页⾯取值报错,如下图
上⽹查了⼀下,在yml⽂件中加⼊⼀个配置就可以了
mybatis:
configuration:
call-setters-on-nulls: true
以上这篇mybatis-plus返回map⾃动转驼峰配置操作就是⼩编分享给⼤家的全部内容了,希望能给⼤家⼀个参考,也希望⼤家多多⽀持。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论