两天搭建了一个SpringBoot,Mybatis多数据源读写分离,redis实现session共享的例子。记录一下~~~
前提条件:Spring Boot,Mybatis 单数据库能正常运行
一、Spring Boot整合Mybatis实现读写分离(后续会做Mysql主从复制)
直接贴代码了,重要的代码已经做了注释,哪儿不合适可以一起探讨~~~
1.application.yml(application.properties)
spring:
profiles:
# 使用开发环境
active: dev
redis:
database: 0
host: 127.0.0.1
port: 6379
password:
pool:
max-active: 8
max-wait: -1
max-idel: 8
min-idel: 0
timeout: 0
mybatis:
configuration:
# 驼峰转换
map-underscore-to-camel-case: true
# 默认缓存数量
default-fetch-size: 100
# SQL执行的超时时间
default-statement-timeout: 3000
# 日志输出到控制台
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
2.application-dev.yml(mybatis)
write:
datasource:
username: root
password: root@123
url: jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=utf-8
# 最大连接数
maxActive: 1000
# 连接池初始化大小
initialSize: 100
# 获取连接的最大等待时间,单位毫秒
maxWait: 60000
# 最小保留数
minIdle: 500
# 检测关闭空闲连接的间隔时间,单位毫秒
timeBetweenEvictionRunsMillis: 60000
# 连接的最小生存时间,,单位毫秒
minEvictableIdleTimeMillis: 300000
validationQuery: select 1
testWhileIdle: true
testOnBorrow: false
testOnReturn: false
# 打开PSCache,并且指定每个连接上PSCache的大小
poolPreparedStatements: true
maxOpenPreparedStatements: 20
# 配置监控统计拦截的filters,去掉后监控界面sql无法统计,'wall'用于防火墙
filters: stat, wall, slf4j
# 合并多个DruidDataSource的监控数据
useGlobalDataSourceStat: true
read:
datasource:
username: root
password: root@123
url: jdbc:mysql://localhost:3306/test2?useUnicode=true&characterEncoding=utf-8
# 最大连接数
maxActive: 1000
# 连接池初始化大小
initialSize: 100
# 获取连接的最大等待时间,单位毫秒
maxWait: 60