map-underscore-to-camel-case 古城微笑少年丶 2022-01-24 00:11 222阅读 0赞 mybatis默认是属性名和数据库字段名一一对应的,即 数据库表列:user\_name 实体类属性:user\_name 但是java中一般使用驼峰命名 数据库表列:user\_name 实体类属性:userName 在Springboot中,可以通过设置map-underscore-to-camel-case属性为true来开启驼峰功能。 application.yml中: mybatis: configuration: map-underscore-to-camel-case: true application.properties中: mybatis.configuration.map-underscore-to-camel-case:=true 文章来源:[Springboot中Mybatis属性映射][Springboot_Mybatis] [Springboot_Mybatis]: https://blog.csdn.net/zhao0416/article/details/78427191
还没有评论,来说两句吧...