您好,登錄后才能下訂單哦!
本篇內(nèi)容主要講解“SpringBoot自定義動態(tài)切換數(shù)據(jù)源的方法是什么”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“SpringBoot自定義動態(tài)切換數(shù)據(jù)源的方法是什么”吧!
<dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>com.alibaba</groupId> <artifactId>druid</artifactId> <version>1.1.3</version> </dependency> <!--properties動態(tài)注入--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId> <optional>true</optional> </dependency> <!--springBoot的aop--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-aop</artifactId> </dependency>
# 數(shù)據(jù)庫訪問配置 # 主數(shù)據(jù)源,默認的 druid: datasource: type: com.alibaba.druid.pool.DruidDataSource driver-class-name: com.mysql.jdbc.Driver url: jdbc:mysql://192.168.1.113:3306/test?useUnicode=true&characterEncoding=utf-8 username: root password: root # 下面為連接池的補充設(shè)置,應(yīng)用到上面所有數(shù)據(jù)源中 # 初始化大小,最小,最大 initialSize: 5 minIdle: 5 maxActive: 20 # 配置獲取連接等待超時的時間 maxWait: 60000 # 配置間隔多久才進行一次檢測,檢測需要關(guān)閉的空閑連接,單位是毫秒 timeBetweenEvictionRunsMillis: 60000 # 配置一個連接在池中最小生存的時間,單位是毫秒 minEvictableIdleTimeMillis: 300000 validationQuery: SELECT 1 FROM DUAL testWhileIdle: true testOnBorrow: false testOnReturn: false # 打開PSCache,并且指定每個連接上PSCache的大小 poolPreparedStatements: true maxPoolPreparedStatementPerConnectionSize: 20 # 配置監(jiān)控統(tǒng)計攔截的filters,去掉后監(jiān)控界面sql無法統(tǒng)計,'wall'用于防火墻 filters: stat,wall,log4j # 通過connectProperties屬性來打開mergeSql功能;慢SQL記錄 connectionProperties: druid: stat: mergeSql: true slowSqlMillis: 5000 # 合并多個DruidDataSource的監(jiān)控數(shù)據(jù) #多數(shù)據(jù)源 mysql-db: datasource: names: logic,dao logic: driver-class-name: com.mysql.jdbc.Driver url: jdbc:mysql://192.168.1.113:3306/test1?useUnicode=true&characterEncoding=utf-8 username: root password: root dao: driver-class-name: com.mysql.jdbc.Driver url: jdbc:mysql://192.168.1.113:3306/test2?useUnicode=true&characterEncoding=utf-8 username: root password: root
import org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource; /** * 動態(tài)數(shù)據(jù)源 * @author 陳梓平 * @date 2017/10/9. */ public class DynamicDataSource extends AbstractRoutingDataSource { @Override protected Object determineCurrentLookupKey() { return DataSourceHolder.getDataSource(); } }
import java.util.ArrayList; import java.util.List; /** * 數(shù)據(jù)源操作 * @author 陳梓平 * @date 2017/10/9. */ public class DataSourceHolder { //線程本地環(huán)境 private static final ThreadLocal<String> contextHolders = new ThreadLocal<String>(); //數(shù)據(jù)源列表 public static List<String> dataSourceIds = new ArrayList<>(); //設(shè)置數(shù)據(jù)源 public static void setDataSource(String customerType) { contextHolders.set(customerType); } //獲取數(shù)據(jù)源 public static String getDataSource() { return (String) contextHolders.get(); } //清除數(shù)據(jù)源 public static void clearDataSource() { contextHolders.remove(); } /** * 判斷指定DataSrouce當前是否存在 * @param dataSourceId * @return * @author SHANHY * @create 2016年1月24日 */ public static boolean containsDataSource(String dataSourceId){ return dataSourceIds.contains(dataSourceId); } }
import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.MutablePropertyValues; import org.springframework.beans.PropertyValues; import org.springframework.boot.autoconfigure.jdbc.DataSourceBuilder; import org.springframework.boot.bind.RelaxedDataBinder; import org.springframework.boot.bind.RelaxedPropertyResolver; import org.springframework.context.EnvironmentAware; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.core.convert.ConversionService; import org.springframework.core.convert.support.DefaultConversionService; import org.springframework.core.env.Environment; import org.springframework.stereotype.Component; import javax.sql.DataSource; import java.util.HashMap; import java.util.Map; /** * 數(shù)據(jù)源配置 * @author 陳梓平 * @date 2017/10/9. */ @Component @Configuration public class DynamicDataSourceConfig implements EnvironmentAware { private static final Logger logger = LoggerFactory.getLogger(DynamicDataSourceConfig.class); // 默認數(shù)據(jù)源 private DataSource defaultDataSource; // 屬性值 private PropertyValues dataSourcePropertyValues; // 如配置文件中未指定數(shù)據(jù)源類型,使用該默認值 private static final Object DATASOURCE_TYPE_DEFAULT = "org.apache.tomcat.jdbc.pool.DataSource"; private ConversionService conversionService = new DefaultConversionService(); private Map<String, DataSource> customDataSources = new HashMap<>(); @Override public void setEnvironment(Environment environment) { initDefaultDatasource(environment); initOtherDatasource(environment); } private void initOtherDatasource(Environment environment) { RelaxedPropertyResolver propertyResolver = new RelaxedPropertyResolver(environment, "mysql-db.datasource."); String dsPrefixs = propertyResolver.getProperty("names"); for (String dsPrefix : dsPrefixs.split(",")) {// 多個數(shù)據(jù)源 Map<String, Object> dsMap = propertyResolver.getSubProperties(dsPrefix+"."); DataSource ds = buildDataSource(dsMap); customDataSources.put(dsPrefix, ds); dataBinder(ds, environment); } } private void initDefaultDatasource(Environment environment) { // 讀取主數(shù)據(jù)源 RelaxedPropertyResolver propertyResolver = new RelaxedPropertyResolver(environment, "druid.datasource."); Map<String, Object> dsMap = new HashMap<>(); dsMap.put("type", propertyResolver.getProperty("type")); dsMap.put("driver-class-name", propertyResolver.getProperty("driver-class-name")); dsMap.put("url", propertyResolver.getProperty("url")); dsMap.put("username", propertyResolver.getProperty("username")); dsMap.put("password", propertyResolver.getProperty("password")); defaultDataSource = buildDataSource(dsMap); DataSourceHolder.dataSourceIds.add("ds1"); dataBinder(defaultDataSource, environment); } /** * 創(chuàng)建DataSource * @param dsMap * @return * @author SHANHY * @create 2016年1月24日 */ @SuppressWarnings("unchecked") public DataSource buildDataSource(Map<String, Object> dsMap) { try { Object type = dsMap.get("type"); if (type == null) type = DATASOURCE_TYPE_DEFAULT;// 默認DataSource Class<? extends DataSource> dataSourceType; dataSourceType = (Class<? extends DataSource>) Class.forName((String) type); String driverClassName = dsMap.get("driver-class-name").toString(); String url = dsMap.get("url").toString(); String username = dsMap.get("username").toString(); String password = dsMap.get("password").toString(); DataSourceBuilder factory = DataSourceBuilder.create().driverClassName(driverClassName).url(url) .username(username).password(password).type(dataSourceType); return factory.build(); } catch (ClassNotFoundException e) { e.printStackTrace(); } return null; } /** * 為DataSource綁定更多數(shù)據(jù) * @param dataSource * @param env * @author SHANHY * @create 2016年1月25日 */ private void dataBinder(DataSource dataSource, Environment env){ RelaxedDataBinder dataBinder = new RelaxedDataBinder(dataSource); //dataBinder.setValidator(new LocalValidatorFactory().run(this.applicationContext)); dataBinder.setConversionService(conversionService); dataBinder.setIgnoreNestedProperties(false);//false dataBinder.setIgnoreInvalidFields(false);//false dataBinder.setIgnoreUnknownFields(true);//true if(dataSourcePropertyValues == null){ Map<String, Object> rpr = new RelaxedPropertyResolver(env, "druid.datasource.").getSubProperties("."); Map<String, Object> values = new HashMap<>(rpr); // 排除已經(jīng)設(shè)置的屬性 values.remove("type"); values.remove("driver-class-name"); values.remove("url"); values.remove("username"); values.remove("password"); dataSourcePropertyValues = new MutablePropertyValues(values); } dataBinder.bind(dataSourcePropertyValues); } @Bean(name = "dataSource") public DynamicDataSource dataSource() { DynamicDataSource dynamicDataSource = new DynamicDataSource(); // 默認數(shù)據(jù)源 dynamicDataSource.setDefaultTargetDataSource(defaultDataSource); // 配置多數(shù)據(jù)源 Map<Object, Object> dsMap = new HashMap(5); dsMap.put("ds1", defaultDataSource); dsMap.putAll(customDataSources); for (String key : customDataSources.keySet()) DataSourceHolder.dataSourceIds.add(key); dynamicDataSource.setTargetDataSources(dsMap); return dynamicDataSource; } }
/** * 動態(tài)數(shù)據(jù)源注解 * @author 陳梓平 * @date 2017/10/9. */ @Retention(RetentionPolicy.RUNTIME) @Target({ ElementType.METHOD }) public @interface DS { String name() default "ds1"; }
import com.chen.config.dynamicDS.DataSourceHolder; import org.aspectj.lang.JoinPoint; import org.aspectj.lang.annotation.After; import org.aspectj.lang.annotation.Aspect; import org.aspectj.lang.annotation.Before; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.core.annotation.Order; import org.springframework.stereotype.Component; /** * 設(shè)置數(shù)據(jù)源切面 * @author 陳梓平 * @date 2017/10/9. */ @Aspect @Order(-1)// 保證該AOP在@Transactional之前執(zhí)行 @Component public class DynamicDataSourceAspect { private static final Logger logger = LoggerFactory.getLogger(DynamicDataSourceAspect.class); @Before("@annotation(ds)") public void changeDataSource(JoinPoint point, DS ds) throws Throwable { String dsId = ds.name(); if (!DataSourceHolder.containsDataSource(dsId)) { logger.error("數(shù)據(jù)源[{}]不存在,使用默認數(shù)據(jù)源 > {}", ds.name(), point.getSignature()); } else { logger.debug("Use DataSource : {} > {}", ds.name(), point.getSignature()); DataSourceHolder.setDataSource(ds.name()); } } @After("@annotation(ds)") public void restoreDataSource(JoinPoint point, DS ds) { logger.debug("Revert DataSource : {} > {}", ds.name(), point.getSignature()); DataSourceHolder.clearDataSource(); } }
/** * @author 陳梓平 * @date 2017/10/9. */ public interface DynamicDSMapper { Integer queryJournal(); String queryUser(); String queryType(); }
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> <mapper namespace="com.chen.mapper.DynamicDSMapper"> <select id="queryJournal" resultType="java.lang.Integer"> SELECT uid FROM journal </select> <select id="queryUser" resultType="java.lang.String"> SELECT name FROM user </select> <select id="queryType" resultType="java.lang.String"> SELECT parent FROM p_type </select> </mapper>
/** * @author 陳梓平 * @date 2017/10/9. */ @Service public class DynamicServciceImpl implements DynamicServcice { @Autowired private DynamicDSMapper dynamicDSMapper; @DS() public Integer ds1() { return dynamicDSMapper.queryJournal(); } @DS(name = "logic") public String ds2() { return dynamicDSMapper.queryUser(); } @DS(name = "dao") public String ds3() { return dynamicDSMapper.queryType(); } }
/** * 多數(shù)原測試 * @author 陳梓平 * @date 2017/10/9. */ @RunWith(SpringRunner.class) @SpringBootTest public class TestDynamicDS { private Logger logger = LoggerFactory.getLogger(TestDynamicDS.class); // @Autowired private DynamicServcice dynamicServcice; @Test public void test() { // Integer integer = dynamicServcice.ds1(); // logger.info("integer:"+integer); // String ds2 = dynamicServcice.ds2(); // logger.info("ds2:"+ds2); String ds3 = dynamicServcice.ds3(); logger.info("ds3:"+ds3); } }
到此,相信大家對“SpringBoot自定義動態(tài)切換數(shù)據(jù)源的方法是什么”有了更深的了解,不妨來實際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進入相關(guān)頻道進行查詢,關(guān)注我們,繼續(xù)學習!
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。