mybatis(Spring boot集成原生mybatis)-03- 多数据源

在mybatis配置文件中,可以配置多个环境。


    
    
        
        
            
            
                
                
                
                
            
        
    
    
       
    

指定使用的环境:

//使用缺省环境
SqlSessionFactory factory = new SqlSessionFactoryBuilder().build(reader);
//使用指定的环境
SqlSessionFactory factory = new SqlSessionFactoryBuilder().build(reader, environment);

数据源:支持【UNPOOLED | POOLED | JNDI 】等类型
如何配置,请参见官方文档 。

你可能感兴趣的:(mybatis(Spring boot集成原生mybatis)-03- 多数据源)