Springboot整合mybatis,配置驼峰命名转换(例:userId --user_id)
如题:两种配置方式1.springboot的配置文件 添加:mybatis.configuration.mapUnderscoreToCamelCase=true 或mybatis.configuration.map-underscore-to-camel-case=true(根据版本不同)2.通过@configuration配置的方式@Bean(name = "sqlS...