我是靠谱客的博主 标致咖啡豆,最近开发中收集的这篇文章主要介绍Springboot整合mybatis,配置驼峰命名转换(例:userId --user_id),觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
如题:两种配置方式
1.
springboot的配置文件 添加:
mybatis.configuration.mapUnderscoreToCamelCase=true 或
mybatis.configuration.map-underscore-to-camel-case=true(根据版本不同)
2.通过@configuration配置的方式
@Bean(name = "sqlSessionFactory")
public SqlSessionFactory sqlSessionFactoryBean() throws IOException {
SqlSessionFactoryBean bean = new SqlSessionFactoryBean();
bean.setDataSource(dataSource);
PathMatchingResourcePatternResolver resolver = new PathMatchingResourcePatternResolver();
bean.setMapperLocations(resolver.getResources("classpath:/mapper/**/**.xml"));
try {
//开启驼峰命名转换
bean.getObject().getConfiguration().setMapUnderscoreToCamelCase(true);
return bean.getObject();
} catch (Exception e) {
e.printStackTrace();
throw new RuntimeException(e);
}
}
最后
以上就是标致咖啡豆为你收集整理的Springboot整合mybatis,配置驼峰命名转换(例:userId --user_id)的全部内容,希望文章能够帮你解决Springboot整合mybatis,配置驼峰命名转换(例:userId --user_id)所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复