mybatis plus 自动转驼峰配置小结
更新时间:2024年10月11日 09:38:02 作者:ningGe001
SpringBoot提供两种配置Mybatis的方式,第一种是通过yml或application.properties文件开启配置,第二种是使用自定义配置类,通过给容器添加一个ConfigurationCustomizer来实现更灵活的配置,这两种方法可以根据项目需求和个人喜好选择使用
方式一
在yml或者 application.properties开启配置
# Mybatis开启驼峰映射 mybatis: configuration: mapUnderscoreToCamelCase: true
mybatis.configuration.mapUnderscoreToCamelCase=true 或 mybatis.configuration.map-underscore-to-camel-case=true
方式二
SpringBoot中还可以使用自定义配置类的方式配置;给容器中添加一个ConfigurationCustomizer;
@Configuration public class MybatisPlusConfig { /** * mybatis-plus分页插件 */ @Bean public PaginationInterceptor paginationInterceptor() { PaginationInterceptor page = new PaginationInterceptor(); return page; } /** * MYBATIS-PLUS返回MAP自动转驼峰配置 * @return */ @Bean public ConfigurationCustomizer mybatisConfigurationCustomizer(){ return new ConfigurationCustomizer() { @Override public void customize(org.apache.ibatis.session.Configuration configuration) { configuration.setObjectWrapperFactory(new MybatisMapWrapperFactory()); } };} }
到此这篇关于mybatis plus 自动转驼峰配置小结的文章就介绍到这了,更多相关mybatis plus 自动转驼峰内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
您可能感兴趣的文章:
相关文章
SpringBoot@DeleteMapping(/xxx/{id})请求报405的解决
这篇文章主要介绍了SpringBoot@DeleteMapping(/xxx/{id})请求报405的解决方案,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教2023-01-01Spring-boot原理及spring-boot-starter实例和代码
spring-boot的starter是一个通过maven完成自包含并通过annotation配置使得可被spring上下文发现并实例化的一个可插拔的组件或服务。这篇文章主要介绍了Spring-boot原理及spring-boot-starter实例和代码 ,需要的朋友可以参考下2019-06-06SpringBean和Controller实现动态注册与注销过程详细讲解
这篇文章主要介绍了SpringBean和Controller实现动态注册与注销过程,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习吧2023-02-02
最新评论