springboot+mybatis使用驼峰命名无效问题

springboot+mybatis整合的时候数据库和实体bean命名不一致处理

场景:
在数据库中都是用user_name这样的命名方式(我是这样的【哈哈】),但在实体类中使用驼峰命名userName方式。再开始的数据总是查不出来(在确定sql正确的情况下),然后很纠结…emmmmm…发现是自己yml配置错

具体的请看图:

maven

      
        
            com.github.pagehelper
            pagehelper-spring-boot-starter
            1.2.5
        
        
        
            com.alibaba
            druid
            1.1.10
        

        
            com.baomidou
            mybatis-plus-boot-starter
            2.1.9
        

        
            com.alibaba
            fastjson
            1.2.47
        

        
            mysql
            mysql-connector-java
            runtime
        

        
            org.springframework.boot
            spring-boot-starter-jdbc
        

yml配置

spring:
     datasource:
       url:  
       username:  
       password:  
       driver-class-name: com.mysql.cj.jdbc.Driver
       max-wait: 10000
       type: com.alibaba.druid.pool.DruidDataSource
       #下面为连接池的补充设置,应用到上面所有数据源中
       #初始化大小,最小,最大
       initialSize: 1
       minIdle: 3
       maxActive: 20
       #配置获取连接等待的超时时间
       maxWait: 60000
       #配置多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒
       timeBetweenEvictionRunsMillis: 60000
       # 配置一个连接在池中最小生存的时间,单位是毫秒
       minEvictableIdleTimeMillis: 30000
       validationQuery: select 'x'
       testWhileIdle: true
       testOnBorrow: false
       testOnReturn: false
       # 打开PSCache,并且指定每个连接上PSCache的大小
       poolPreparedStatements: true
       maxPoolPreparedStatementPerConnectionSize: 20
---
mybatis-plus:
  type-aliases-package: 
  mapper-locations:  
  global-config:
    refresh-mapper: true
     #驼峰下划线转换
    column-underline: true
  configuration:
     map-underscore-to-camel-case: true
---

加一个数据源配置

import com.alibaba.druid.pool.DruidDataSource;
import com.baomidou.mybatisplus.spring.boot.starter.SpringBootVFS;
import org.apache.ibatis.session.SqlSessionFactory;
import org.mybatis.spring.SqlSessionFactoryBean;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.jdbc.datasource.DataSourceTransactionManager;

import javax.sql.DataSource;

/**
 * 数据源配置
 */
@Configuration
public class DataSourceConfig {

    @Bean(name = "dataSource")
    @ConfigurationProperties(prefix = "spring.datasource")
    public DataSource dataSource() {
        return new DruidDataSource();
    }


    /**
     * 配置事务管理器
     */
    @Bean(name = "transactionManager")
    public DataSourceTransactionManager transactionManager() {

        return new DataSourceTransactionManager(dataSource());
    }
	
  /**
		     *  **这里这里**
     */
    @Bean(name = "sqlSessionFactory")
    public SqlSessionFactory sqlSessionFactory(@Qualifier("dataSource") DataSource dataSource) throws Exception {
        SqlSessionFactoryBean sqlSessionFactoryBean = new SqlSessionFactoryBean();
        sqlSessionFactoryBean.setDataSource(dataSource);
        sqlSessionFactoryBean.setVfs(SpringBootVFS.class);
        -----   主要是这句
        sqlSessionFactoryBean.getObject().getConfiguration().setMapUnderscoreToCamelCase(true);
        return sqlSessionFactoryBean.getObject();

    }
}

最后
启动运行,再试试吧【没成功请在百度吧,加油】

你可能感兴趣的:(Springboot,学习)