其他分享
首页 > 其他分享> > mybaties只能驼峰映射,怎么可能,虐渣渣。(springboot)

mybaties只能驼峰映射,怎么可能,虐渣渣。(springboot)

作者:互联网

项目中碰到一个装逼的,mybaties只能把数据库映射成驼峰,execuse me?

作为现在市场已经普及通用的框架,如果连这种基本问题都不能解决,那么它的普及率不会那么高。用了不到一个小时,就搞定了。项目是springboot的,所以接下来以springboot背景讲述。

mybatis-plus:
  configuration:
    map-underscore-to-camel-case: false  

 在mybaties相关配置中添加:map-underscore-to-camel-case,true是启动驼峰。

标签:mybaties,map,springboot,驼峰,camel,虐渣,underscore
来源: https://www.cnblogs.com/ivy-xu/p/12982180.html