spring boot mybatis多数据源 去xml转驼峰失败

package com.artifact.api.config;

import javax.sql.DataSource;

import org.apache.ibatis.session.SqlSessionFactory;
import org.mybatis.spring.SqlSessionFactoryBean;
import org.mybatis.spring.SqlSessionTemplate;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.boot.autoconfigure.jdbc.DataSourceBuilder;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.core.io.support.PathMatchingResourcePatternResolver;
import org.springframework.core.io.support.ResourcePatternResolver;
/**
 * 多数据源配置
 * @description OtherDataSourceConfig.java
 * @author LI
 * @date 2018年10月26日 下午3:00:10
 */
@Configuration
@MapperScan(basePackages = {"com.artifact.api.othermapper"}, sqlSessionTemplateRef = "otherSqlSessionTemplate")
public class OtherDataSourceConfig {
	
	    @Bean(name = "otherDB")
	    @ConfigurationProperties(prefix = "spring.datasource.db2") // application.properteis中对应属性的前缀
	    public DataSource dataSource1() {
	        return DataSourceBuilder.create().build();
	    }
	    @Bean
	    public SqlSessionFactory otherSqlSessionFactory(@Qualifier("otherDB") DataSource dataSource)throws Exception{
	        SqlSessionFactoryBean bean= new SqlSessionFactoryBean();
	        bean.setDataSource(dataSource);
	        //添加XML目录
	        ResourcePatternResolver resolver = new PathMatchingResourcePatternResolver();
	        try{
	        	bean.setMapperLocations(resolver.getResources("classpath*:com/artifact/api/othermapper/xml/*.xml"));
                //在配置中加上这句代码 多数据源转驼峰就OK了
	        	bean.getObject().getConfiguration().setMapUnderscoreToCamelCase(true);
	        	return bean.getObject();
	        }catch(Exception e){
	        	e.printStackTrace();
	        	throw new RuntimeException(e);
	        }
	    }
	    
	    @Bean
	    public SqlSessionTemplate otherSqlSessionTemplate(@Qualifier("otherSqlSessionFactory") SqlSessionFactory sqlSessionFactory ) throws Exception {
	    	// 使用上面配置的Factory
	    	SqlSessionTemplate template = new SqlSessionTemplate(sqlSessionFactory);
	    	return template;
	    }
}

 

转载于:https://my.oschina.net/u/3576777/blog/2991356

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值