SpringBoot实现多数据源(实战源码)
通过一个数据库的表数据去查询同步另一个数据库,之前的方式是通过写个小工具,然后jdbc方式进行处理,这个方式也挺好用的.学习了springboot后发现可以实现多数据源操作,然后就具体实现以下.
以下代码主要实现的功能有mysql数据的增删改查,oracle数据库的查,还有将mysql数据同步到oracle中.
代码目录结构
java/com.fxust
+config
  -FirstDBConfig.java
  -SecondConfig.java
+controller
  -NoteController.java
  -UserController.java
+dao
  +first
    -UserMapper.java
  +second
    -NoteMapper.java
+model
  +first
    -User.java
  +second
    -Note.java
+service
	  +impl
		    -NoteServiceImpl.java
		    -UserServiceImpl.java
	  -NoteService.java
	  -UserService.java
-BootApplication
resources
	  -application.yml
pom.xml文件的配置情况
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <groupId>com.fxust</groupId>
<artifactId>boot</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging> <name>boot</name>
<description>Demo project for Spring Boot</description> <parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.9.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent> <properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
</properties> <dependencies>
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>1.3.1</version>
</dependency> <dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.38</version>
</dependency>
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc6</artifactId>
<version>11.2.0.3</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency> <dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper</artifactId>
<version>4.1.0</version>
</dependency>
</dependencies> <build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
application.yml配置,springboot支持原生的yml配置
server:
port: 8088 //配置启动的端口
//配置mysql数据源
firstDataSource:
driver-class-name: com.mysql.jdbc.Driver
url: jdbc:mysql://localhost:/test?zeroDateTimeBehavior=convertToNull&useUnicode=true&characterEncoding=utf-&useSSL=true
username: root
password: root
//配置oracle数据源
secondDataSource:
driver-class-name: oracle.jdbc.driver.OracleDriver
url: jdbc:oracle:thin:@127.0.0.1::orcl
username: test
password: test
通过代码获取配置数据源
package com.fxust.config; import org.apache.ibatis.session.SqlSessionFactory;
import org.mybatis.spring.SqlSessionFactoryBean;
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 javax.sql.DataSource; /**
* Created by fgq on 2017/12/28.
*/
@Configuration
@MapperScan(basePackages = "com.fxust.dao.first",sqlSessionFactoryRef = "firstSqlSessionFactory")
public class FirstDBConfig { @Bean(name = "firstDataSource")
@ConfigurationProperties(prefix = "firstDataSource")
public DataSource firstDataSource(){
return DataSourceBuilder.create().build();
} @Bean(name = "firstSqlSessionFactory")
public SqlSessionFactory firstSqlSessionFactory(@Qualifier("firstDataSource") DataSource dataSource) throws Exception{
SqlSessionFactoryBean bean = new SqlSessionFactoryBean();
bean.setDataSource(dataSource);
return bean.getObject();
}
}
package com.fxust.config; import org.apache.ibatis.session.SqlSessionFactory;
import org.mybatis.spring.SqlSessionFactoryBean;
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.context.annotation.Primary; import javax.sql.DataSource; /**
* Created by fgq on 2017/12/28.
*/
@Configuration
@MapperScan(basePackages = "com.fxust.dao.second",sqlSessionFactoryRef = "secondSqlSessionFactory")
public class SecondDBConfig { @Bean(name = "secondDataSource")
@ConfigurationProperties(prefix = "secondDataSource")
@Primary
public DataSource secondDataSource(){
return DataSourceBuilder.create().build();
} @Bean(name = "secondSqlSessionFactory")
@Primary
public SqlSessionFactory secondSessionFactory(@Qualifier("secondDataSource") DataSource dataSource) throws Exception{
SqlSessionFactoryBean bean = new SqlSessionFactoryBean();
bean.setDataSource(dataSource);
return bean.getObject();
}
}
基于注解实现dao层的增删改查
package com.fxust.dao.first; import com.fxust.model.first.User;
import org.apache.ibatis.annotations.*; import java.util.List; /**
* Created by fgq on 2017/12/28.
*/ @Mapper
public interface UserMapper { @Select("select * from user where id = #{id}")
User queryById(@Param("id") int id); @Select("select * from user")
List<User> queryAll(); @Insert({"insert into user(id,name,age,hobby)values(#{id},#{name},#{age},#{hobby})"})
int add(User user); @Update("update user set name=#{name},age=#{age},hobby=#{hobby} where id=#{id}")
int update(User user); @Delete("delete from user where id=#{id}")
int delete(int id);
}
package com.fxust.dao.second; import com.fxust.model.second.Note;
import org.apache.ibatis.annotations.Insert;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Select; import java.util.List; /**
* Created by fgq on 2017/12/28.
*/
@Mapper
public interface NoteMapper { @Select("select human_id humanId,human_name humanName,human_age humanAge,human_hobby humanHobby,insert_time insertTime from NOTE order by insert_time desc")
List<Note> queryAll(); @Insert("insert into note(human_id,human_name,human_age,human_hobby)values(#{humanId},#{humanName},#{humanAge},#{humanHobby})")
void insert(Note note);
}
model层代码
public class User {
    private String id;
    private String name;
    private String age;
    private String hobby;
  //省略setter,getter方法
}
public class Note {
    private int humanId;
    private String humanName;
    private int humanAge;
    private String humanHobby;
    private String insertTime;
 //省略setter,getter方法
}
service层实现业务逻辑
package com.fxust.service.impl; import com.fxust.dao.first.UserMapper;
import com.fxust.dao.second.NoteMapper;
import com.fxust.model.first.User;
import com.fxust.model.second.Note;
import com.fxust.service.UserSerivce;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service; import java.util.List; /**
* Created by fgq on 2018/1/12.
*/
@Service
public class UserServiceImpl implements UserSerivce { @Autowired
UserMapper userDao; @Autowired
NoteMapper noteDao; public User queryById(int id){
return userDao.queryById(id);
} public PageInfo<User> queryAllUser(int pageNum, int pageSize){
PageHelper.startPage(pageNum, pageSize);
List<User> userList = userDao.queryAll();
return new PageInfo<>(userList);
} public String addUser(User user){
return userDao.add(user) == 1 ? "success" : "fail";
} public String updateUser(User user){
return userDao.update(user) == 1 ? "success" : "fail";
} public String deleteUser(int id){
return userDao.delete(id) == 1 ? "success" : "fail";
} public void synMysqlToOracle() {
List<User> userList = userDao.queryAll();
for (User user : userList) {
Note note = new Note();
String userId = user.getId();
String userName = user.getName();
String userAge = user.getAge();
String userHobby = user.getHobby();
note.setHumanId(Integer.valueOf(userId));
note.setHumanName(userName);
note.setHumanAge(Integer.valueOf(userAge));
note.setHumanHobby(userHobby);
noteDao.insert(note);
}
}
}
package com.fxust.service.impl; import com.fxust.dao.second.NoteMapper;
import com.fxust.model.second.Note;
import com.fxust.service.NoteService;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service; import java.util.List; /**
* Created by fgq on 2018/1/12.
*/
@Service
public class NoteServiceImpl implements NoteService { @Autowired
NoteMapper noteDao; public PageInfo<Note> queryAllNote(int pageNum,int pageSize){
PageHelper.startPage(pageNum, pageSize);
List<Note> noteList = noteDao.queryAll();
return new PageInfo<>(noteList);
}
}
controller层实现接口访问控制
package com.fxust.controller; import com.fxust.model.second.Note;
import com.fxust.service.NoteService;
import com.github.pagehelper.PageInfo;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody; /**
* Created by fgq on 2017/12/28.
*/
@Controller
@RequestMapping("/note")
public class NoteController { @Autowired
NoteService noteService; //@RequestParam(value = "pageNum",defaultValue = "1") int pageNum, @RequestParam(value = "pageSize",defaultValue = "10") int pageSize
@RequestMapping("queryAll")
@ResponseBody
PageInfo<Note> queryAll(@RequestParam(value = "pageNum", defaultValue = "1") int pageNum,
@RequestParam(value = "pageSize", defaultValue = "10") int pageSize) {
return noteService.queryAllNote(pageNum, pageSize);
}
}
package com.fxust.controller; import com.fxust.model.first.User;
import com.fxust.service.UserSerivce;
import com.github.pagehelper.PageInfo;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody; /**
* Created by fengguoqiang on 2017/12/28.
*
*/
@Controller
@RequestMapping(value = "/user")
public class UserController { @Autowired
UserSerivce userSerivce; @RequestMapping(value = "/queryById")
@ResponseBody
User queryById(int id){
return userSerivce.queryById(id);
} @RequestMapping(value = "/queryAll")
@ResponseBody
PageInfo<User> queryAll(@RequestParam(value = "pageNum",defaultValue = "1")int pageNum,
@RequestParam(value = "pageSize",defaultValue = "10")int pageSize){
return userSerivce.queryAllUser(pageNum, pageSize);
} @RequestMapping(value = "/add")
@ResponseBody
String addUser(User user){
return userSerivce.addUser(user);
} @RequestMapping(value = "/update")
@ResponseBody
String updateUser(User user){
return userSerivce.updateUser(user);
} @RequestMapping(value = "/delete")
@ResponseBody
String delete(int id){
return userSerivce.deleteUser(id);
} @RequestMapping(value = "/syn")
@ResponseBody
void synData(){
userSerivce.synMysqlToOracle();//应该在系统启动后异步执行
} }
调用接口如下
/user/add?name=biadu&age=12&hobby=web
/user/update?name=yahu&age=33&hobby=web&id=2
/user/queryById?id=2
/user/delete?id=1
/user/queryAll
/note/queryAll
SpringBoot实现多数据源(实战源码)的更多相关文章
- Spring Boot 揭秘与实战 源码分析 - 工作原理剖析
		文章目录 1. EnableAutoConfiguration 帮助我们做了什么 2. 配置参数类 – FreeMarkerProperties 3. 自动配置类 – FreeMarkerAutoCo ... 
- Spring Boot 揭秘与实战 源码分析 - 开箱即用,内藏玄机
		文章目录 1. 开箱即用,内藏玄机 2. 总结 3. 源代码 Spring Boot提供了很多”开箱即用“的依赖模块,那么,Spring Boot 如何巧妙的做到开箱即用,自动配置的呢? 开箱即用,内 ... 
- 详解SpringBoot集成jsp(附源码)+遇到的坑
		本文介绍了SpringBoot集成jsp(附源码)+遇到的坑 ,分享给大家 1.大体步骤 (1)创建Maven web project: (2)在pom.xml文件添加依赖: (3)配置applica ... 
- SpringBoot事件监听机制源码分析(上) SpringBoot源码(九)
		SpringBoot中文注释项目Github地址: https://github.com/yuanmabiji/spring-boot-2.1.0.RELEASE 本篇接 SpringApplicat ... 
- CentOS7 实战源码安装mysql5.7.17数据库服务器
		CentOS7 实战源码安装mysql5.7.17数据库服务器 简介:实战演练mysql数据库服务器的搭建 mysql简介: mysql是一个开源的关系型数据库管理系统,现在是oracle公司旗下的 ... 
- Springboot中mybatis执行逻辑源码分析
		Springboot中mybatis执行逻辑源码分析 在上一篇springboot整合mybatis源码分析已经讲了我们的Mapper接口,userMapper是通过MapperProxy实现的一个动 ... 
- springboot Properties加载顺序源码分析
		关于properties: 在spring框架中properties为Environment对象重要组成部分, springboot有如下几种种方式注入(优先级从高到低): 1.命令行 java -j ... 
- 实战 | 源码入门之Faster RCNN
		前言 学习深度学习和计算机视觉,特别是目标检测方向的学习者,一定听说过Faster Rcnn:在目标检测领域,Faster Rcnn表现出了极强的生命力,被大量的学习者学习,研究和工程应用.网上有很多 ... 
- 学习SpringBoot整合SSM三大框架源码之SpringBoot
		Spring Boot源码剖析 一.Spring Boot 项目的启动入口流程分析 Spring Boot项目的启动入口main线程上有一个@SpringBootApplication( @Confi ... 
随机推荐
- 剑指Offer——从尾到头打印链表
			题目描述: 输入一个链表,从尾到头打印链表每个节点的值. 分析: 方法1:利用栈的性质,先从头到尾遍历链表每个节点的值存入栈中,最后一个一个出栈顺序便是从尾到头的. 方法2:直接从头到尾遍历链表存储节 ... 
- PHP 安装memcache.so 和memcached.so
			一.memcache.so 的安装 wget http://pecl.php.net/get/memcache-2.2.7.tgztar zxvf memcache-2.2.7.tgz./config ... 
- tornado下使用静态文件和文件缓存
			静态文件和文件缓存 1.在应用配置 settings 中指定 static_path 选项来提供静态文件服务: 2.在应用配置 settings 中指定 static_url_prefix 选项来 ... 
- python删除目录下七天前创建的文件
			#coding=utf-8 import os import time import datetime def deleteOutdateFiles(path): """ ... 
- cas无缝单点登录(原创)
			之前一直有一个问题残绕着自己,今天,终于很粗糙的解决了这个问题. 众所周知,按照cas单点登录,默认情况下,在不登录的情况下,打开网站是必须要跳转到登录页面的.那有什么方法可以控制吗,当然有,很简单, ... 
- sql join on 与where
			转载:http://www.cnblogs.com/Jessy/p/3525419.html left join :左连接,返回左表中所有的记录以及右表中连接字段相等的记录. right join : ... 
- 用Tchromium替代webbrowser提交网页表单有关问题
			用Tchromium替代webbrowser提交网页表单有关问题 提交表单时,使用js脚本,然后用 chrm.browser.Frame['ff'].ExecuteJavaScript 提交就可以 ... 
- PAT 天梯赛 L1-047. 装睡 【水】
			题目链接 https://www.patest.cn/contests/gplt/L1-047 AC代码 #include <iostream> #include <cstdio&g ... 
- javaEE中的字符编码问题
			0 web.xml中注册的CharacterEncodingFilter <!-- 配置字符集过滤器 --> <filter> <filter-name>encod ... 
- 【JavaScript】canvas实现一个小游戏
			参考: 1.image onload事件:http://www.runoob.com/jsref/event-img-onload.html(赞) 2.canvas的drawImage无法显示图像:h ... 
