mybatis 中 mapUnderscoreToCamelCase自动驼峰命名转换

SSM 项目中在mybatis配置文件中添加以下配置,可以将数据库中 user_name转化成 userName 与实体类属性对应, 如果数据库使用如 user_name 的命名方式,实体类采用驼峰命名。配置后无需写resultMapper将数据库字段和实体类属性对应

        

                

        

在spring boot项目中没有mybatis.xml文件,配置文件application.properties中,加入配置项:

mybatis.configuration.mapUnderscoreToCamelCase=true

你可能感兴趣的:(mybatis 中 mapUnderscoreToCamelCase自动驼峰命名转换)