Java Mybatis 多数据源驼峰配置失效
昨天我在搬砖的时候发现Mybatis的驼峰是失效了,但是我在properties里面是配置了驼峰的
mybatis.configuration.map-underscore-to-camel-case=true
解决方法:在配置的sqlSessionFactory()方法中增加
sqlSessionFactoryBean.getObject().getConfiguration().setMapUnderscoreToCamelCase(true);
如果是Mybatis其他配置在配置的sqlSessionFactory()增加对应的配置即可。