真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

在springboot中使用mybatis如何實(shí)現(xiàn)多數(shù)據(jù)源

這篇文章給大家介紹在springboot中使用mybatis如何實(shí)現(xiàn)多數(shù)據(jù)源,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對(duì)大家能有所幫助。

成都創(chuàng)新互聯(lián)是一家集網(wǎng)站建設(shè),烏海企業(yè)網(wǎng)站建設(shè),烏海品牌網(wǎng)站建設(shè),網(wǎng)站定制,烏海網(wǎng)站建設(shè)報(bào)價(jià),網(wǎng)絡(luò)營(yíng)銷,網(wǎng)絡(luò)優(yōu)化,烏海網(wǎng)站推廣為一體的創(chuàng)新建站企業(yè),幫助傳統(tǒng)企業(yè)提升企業(yè)形象加強(qiáng)企業(yè)競(jìng)爭(zhēng)力??沙浞譂M足這一群體相比中小企業(yè)更為豐富、高端、多元的互聯(lián)網(wǎng)需求。同時(shí)我們時(shí)刻保持專業(yè)、時(shí)尚、前沿,時(shí)刻以成就客戶成長(zhǎng)自我,堅(jiān)持不斷學(xué)習(xí)、思考、沉淀、凈化自己,讓我們?yōu)楦嗟钠髽I(yè)打造出實(shí)用型網(wǎng)站。

說起多數(shù)據(jù)源,一般都來解決那些問題呢,主從模式或者業(yè)務(wù)比較復(fù)雜需要連接不同的分庫(kù)來支持業(yè)務(wù)。我們項(xiàng)目是后者的模式,網(wǎng)上找了很多,大都是根據(jù)jpa來做多數(shù)據(jù)源解決方案,要不就是老的spring多數(shù)據(jù)源解決方案,還有的是利用aop動(dòng)態(tài)切換

配置文件

pom包就不貼了比較簡(jiǎn)單該依賴的就依賴,主要是數(shù)據(jù)庫(kù)這邊的配置:

mybatis.config-locations=classpath:mybatis/mybatis-config.xml

spring.datasource.test1.driverClassName = com.MySQL.jdbc.Driver
spring.datasource.test1.url = jdbc:mysql://localhost:3306/test1?useUnicode=true&characterEncoding=utf-8
spring.datasource.test1.username = root
spring.datasource.test1.password = root

spring.datasource.test2.driverClassName = com.mysql.jdbc.Driver
spring.datasource.test2.url = jdbc:mysql://localhost:3306/test2?useUnicode=true&characterEncoding=utf-8
spring.datasource.test2.username = root
spring.datasource.test2.password = root

一個(gè)test1庫(kù)和一個(gè)test2庫(kù),其中test1位主庫(kù),在使用的過程中必須制定主庫(kù),不然會(huì)報(bào)錯(cuò)。

數(shù)據(jù)源配置

@Configuration
@MapperScan(basePackages = "com.neo.mapper.test1", sqlSessionTemplateRef = "test1SqlSessionTemplate")
public class DataSource1Config {

  @Bean(name = "test1DataSource")
  @ConfigurationProperties(prefix = "spring.datasource.test1")
  @Primary
  public DataSource testDataSource() {
    return DataSourceBuilder.create().build();
  }

  @Bean(name = "test1SqlSessionFactory")
  @Primary
  public SqlSessionFactory testSqlSessionFactory(@Qualifier("test1DataSource") DataSource dataSource) throws Exception {
    SqlSessionFactoryBean bean = new SqlSessionFactoryBean();
    bean.setDataSource(dataSource);
    bean.setMapperLocations(new PathMatchingResourcePatternResolver().getResources("classpath:mybatis/mapper/test1/*.xml"));
    return bean.getObject();
  }

  @Bean(name = "test1TransactionManager")
  @Primary
  public DataSourceTransactionManager testTransactionManager(@Qualifier("test1DataSource") DataSource dataSource) {
    return new DataSourceTransactionManager(dataSource);
  }

  @Bean(name = "test1SqlSessionTemplate")
  @Primary
  public SqlSessionTemplate testSqlSessionTemplate(@Qualifier("test1SqlSessionFactory") SqlSessionFactory sqlSessionFactory) throws Exception {
    return new SqlSessionTemplate(sqlSessionFactory);
  }

}

最關(guān)鍵的地方就是這塊了,一層一層注入,先創(chuàng)建DataSource,在創(chuàng)建SqlSessionFactory在創(chuàng)建事務(wù),最后包裝到SqlSessionTemplate中。其中需要制定分庫(kù)的mapper文件地址,以及分庫(kù)到層代碼

復(fù)制代碼 代碼如下:

@MapperScan(basePackages = "com.neo.mapper.test1", sqlSessionTemplateRef  = "test1SqlSessionTemplate")

這塊的注解就是指明了掃描dao層,并且給dao層注入指定的SqlSessionTemplate。所有@Bean都需要按照命名指定正確。

dao層和xml層

dao層和xml需要按照庫(kù)來分在不同的目錄,比如:test1庫(kù)dao層在com.neo.mapper.test1包下,test2庫(kù)在com.neo.mapper.test1

public interface User1Mapper {

  List getAll();

  UserEntity getOne(Long id);

  void insert(UserEntity user);

  void update(UserEntity user);

  void delete(Long id);

}

xml層

<?xml version="1.0" encoding="UTF-8" ?>


  
    
    
    
    
    
  

  
    id, userName, passWord, user_sex, nick_name
  

  

  

  
    INSERT INTO 
      users
      (userName,passWord,user_sex) 
    VALUES
      (#{userName}, #{passWord}, #{userSex})
  

  
    UPDATE 
      users 
    SET 
    userName = #{userName},
    passWord = #{passWord},
    nick_name = #{nickName}
    WHERE 
      id = #{id}
  

  
    DELETE FROM
       users 
    WHERE 
       id =#{id}
  

測(cè)試

測(cè)試可以使用SpringBootTest,也可以放到Controller中,這里只貼Controller層的使用

@RestController
public class UserController {

  @Autowired
  private User1Mapper user1Mapper;

  @Autowired
  private User2Mapper user2Mapper;

  @RequestMapping("/getUsers")
  public List getUsers() {
    List users=user1Mapper.getAll();
    return users;
  }

  @RequestMapping("/getUser")
  public UserEntity getUser(Long id) {
    UserEntity user=user2Mapper.getOne(id);
    return user;
  }

  @RequestMapping("/add")
  public void save(UserEntity user) {
    user2Mapper.insert(user);
  }

  @RequestMapping(value="update")
  public void update(UserEntity user) {
    user2Mapper.update(user);
  }

  @RequestMapping(value="/delete/{id}")
  public void delete(@PathVariable("id") Long id) {
    user1Mapper.delete(id);
  }

}

關(guān)于在springboot中使用mybatis如何實(shí)現(xiàn)多數(shù)據(jù)源就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。


網(wǎng)站題目:在springboot中使用mybatis如何實(shí)現(xiàn)多數(shù)據(jù)源
網(wǎng)頁(yè)鏈接:http://weahome.cn/article/geohhi.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部