mybatis之开启驼峰映射

如果出现sql查询有数据但映射到javabean值为null,先查看是否开启mybatis的驼峰映射的设置。

  1. 在.properties文件中添加:
mybatis.configuration.map-underscore-to-camel-case=true 
  1. 在mybatis的配置文件,如mybatis-config.xml中进行配置:

    
      
    
      
    
 

 

你可能感兴趣的:(MyBatis)