每天一个注解之@DataSource、 @DS

2024-04-07 18:36
文章标签 注解 每天 ds datasource

本文主要是介绍每天一个注解之@DataSource、 @DS,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

在Java中,@DataSource 注解通常用于标记数据源(DataSource)相关的信息。数据源是一个用于获取数据库连接的对象,它通常用于与数据库进行交互。@DataSource 注解的详细说明可能会因不同的框架或库而有所不同,但通常用于配置数据源的一些属性,例如数据库的连接URL、用户名、密码等。

方案一

不同的包具体实现是不一样的,举例这个注解,主要是为了引出多数据源的配置方法。

依赖

       <dependency><groupId>com.baomidou</groupId><artifactId>dynamic-datasource-spring-boot-starter</artifactId><version>3.4.1</version></dependency>

配置:

在这里插入图片描述

使用不同的数据源

@DS(“master”), master 就是配置的数据源名称。
在这里插入图片描述

说明

@DS 可以注解在方法上和类上。如果同时存在,方法注解优先于类上注解。强烈建议注解在 service 实现或 mapper 接口方法上。

@DS(“xxx”) 指定使用 xxx 这个数据源,xxx 可以为组名也可以为具体某个库的名称。如果是组名则切换时采用负载均衡算法切换。如果指定的组名或者库不存在,则自动使用默认数据源(主库)

如果没有 @DS,则使用默认数据源(主库)

如果设置了 @DS 但没有指定某个组或者库,则根据 DynamicDataSourceStrategy 策略,选择一个从库。默认负载均衡策略。

方案二:借助com.alibaba.druid 自己实现多数据源

依赖

       <dependency><groupId>com.alibaba</groupId><artifactId>druid</artifactId><version>${druid.version}</version></dependency>
spring:profiles: devdatasource:url: jdbc:mysql://127.0.0.1:3306/pos?serverTimezone=UTC&useSSL=false&autoReconnect=true&tinyInt1isBit=false&useUnicode=true&characterEncoding=utf8username: rootpassword: 123456#多数据源
biz:datasource:url: jdbc:mysql://127.0.0.1:3306/biz?serverTimezone=UTC&useSSL=false&autoReconnect=true&tinyInt1isBit=false&useUnicode=true&characterEncoding=utf8username: rootpassword: 123456

java config 类

package com.xncoding.pos.config;import com.alibaba.druid.pool.DruidDataSource;
import com.baomidou.mybatisplus.plugins.PaginationInterceptor;
import com.xncoding.pos.common.mutidatesource.DSEnum;
import com.xncoding.pos.common.mutidatesource.DynamicDataSource;
import com.xncoding.pos.config.properties.DruidProperties;
import com.xncoding.pos.config.properties.MutiDataSourceProperties;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.transaction.annotation.EnableTransactionManagement;import java.sql.SQLException;
import java.util.HashMap;/*** MybatisPlus配置** @author xiongneng* @since 2017/5/20 21:58*/
@Configuration
@EnableTransactionManagement(order = 2)
@MapperScan(basePackages = {"com.xncoding.pos.common.dao.repository"})
public class MybatisPlusConfig {@AutowiredDruidProperties druidProperties;@AutowiredMutiDataSourceProperties mutiDataSourceProperties;/*** 核心数据源*/private DruidDataSource coreDataSource() {DruidDataSource dataSource = new DruidDataSource();druidProperties.config(dataSource);return dataSource;}/*** 另一个数据源*/private DruidDataSource bizDataSource() {DruidDataSource dataSource = new DruidDataSource();druidProperties.config(dataSource);mutiDataSourceProperties.config(dataSource);return dataSource;}/*** 单数据源连接池配置*/@Bean@ConditionalOnProperty(prefix = "xncoding", name = "muti-datasource-open", havingValue = "false")public DruidDataSource singleDatasource() {return coreDataSource();}/*** 多数据源连接池配置*/@Bean@ConditionalOnProperty(prefix = "xncoding", name = "muti-datasource-open", havingValue = "true")public DynamicDataSource mutiDataSource() {DruidDataSource coreDataSource = coreDataSource();DruidDataSource bizDataSource = bizDataSource();try {coreDataSource.init();bizDataSource.init();} catch (SQLException sql) {sql.printStackTrace();}DynamicDataSource dynamicDataSource = new DynamicDataSource();HashMap<Object, Object> hashMap = new HashMap<>();hashMap.put("dataSourceCore", coreDataSource);hashMap.put("dataSourceBiz", bizDataSource);dynamicDataSource.setTargetDataSources(hashMap);dynamicDataSource.setDefaultTargetDataSource(coreDataSource);return dynamicDataSource;}/*** mybatis-plus分页插件*/@Beanpublic PaginationInterceptor paginationInterceptor() {return new PaginationInterceptor();}
}

自定义一个注解:


/*** 多数据源标识** @author xiongneng* @since 2017年3月5日 上午9:44:24*/
@Inherited
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD})
public @interface DataSource {String name() default "";
}

aop 捕获注解,切换数据源:

package com.xncoding.pos.common.aop;import com.xncoding.pos.common.annotion.DataSource;
import com.xncoding.pos.common.mutidatesource.DSEnum;
import com.xncoding.pos.common.mutidatesource.DataSourceContextHolder;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.Signature;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Pointcut;
import org.aspectj.lang.reflect.MethodSignature;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.core.Ordered;
import org.springframework.stereotype.Component;import java.lang.reflect.Method;/*** 多数据源切换的aop** @author xiongneng* @since 2017年3月5日 上午10:22:16*/
@Aspect
@Component
@ConditionalOnProperty(prefix = "xncoding", name = "muti-datasource-open", havingValue = "true")
public class MultiSourceExAop implements Ordered {private Logger log = LoggerFactory.getLogger(this.getClass());@Pointcut(value = "@annotation(com.xncoding.pos.common.annotion.DataSource)")private void cut() {}@Around("cut()")public Object around(ProceedingJoinPoint point) throws Throwable {Signature signature = point.getSignature();MethodSignature methodSignature = null;if (!(signature instanceof MethodSignature)) {throw new IllegalArgumentException("该注解只能用于方法");}methodSignature = (MethodSignature) signature;Object target = point.getTarget();Method currentMethod = target.getClass().getMethod(methodSignature.getName(), methodSignature.getParameterTypes());DataSource datasource = currentMethod.getAnnotation(DataSource.class);if (datasource != null) {DataSourceContextHolder.setDataSourceType(datasource.name());log.debug("设置数据源为:" + datasource.name());} else {DataSourceContextHolder.setDataSourceType("dataSourceCore");log.debug("设置数据源为:dataSourceCore");}try {return point.proceed();} finally {log.debug("清空数据源信息!");DataSourceContextHolder.clearDataSourceType();}}/*** aop的顺序要早于spring的事务*/@Overridepublic int getOrder() {return 1;}}

使用:

在这里插入图片描述

两种方法都能实现多数据源。此外还有很多的实现方法。

这篇关于每天一个注解之@DataSource、 @DS的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/883362

相关文章

每天认识几个maven依赖(ActiveMQ+activemq-jaxb+activesoap+activespace+adarwin)

八、ActiveMQ 1、是什么? ActiveMQ 是一个开源的消息中间件(Message Broker),由 Apache 软件基金会开发和维护。它实现了 Java 消息服务(Java Message Service, JMS)规范,并支持多种消息传递协议,包括 AMQP、MQTT 和 OpenWire 等。 2、有什么用? 可靠性:ActiveMQ 提供了消息持久性和事务支持,确保消

spring—使用注解配置Bean

从Spring2.5开始,出现了注解装配JavaBean的新方式。注解可以减少代码的开发量,spring提供了丰富的注解功能,现在项目中注解的方式使用的也越来越多了。   ** 开启注解扫描          Spring容器默认是禁用注解配置的。打开注解扫描的方式主要有两种: <context:component-scan>组件扫描和<context:annotation

Spring Boot 注解探秘:HTTP 请求的魅力之旅

在SpringBoot应用开发中,处理Http请求是一项基础且重要的任务。Spring Boot通过提供一系列丰富的注解极大地简化了这一过程,使得定义请求处理器和路由变得更加直观与便捷。这些注解不仅帮助开发者清晰地定义不同类型的HTTP请求如何被处理,同时也提升了代码的可读性和维护性。 一、@RequestMapping @RequestMapping用于将特定的HTTP请求映射到特定的方法上

Redis缓存 自定义注解+aspect+反射技术实现

最近再给云随笔后台增加redis模块,突然发现spring-boot-starter-data-redis模块很不人性化,实现不了通用的方式,(当然,你也可以自己写个通用的CacheUtil来实现通用的方式),但由于本人非常的爱装逼,就在这里不讲解那种傻瓜式操作了,这里只讲干货,干到你不可置信的干货). 例如:这里我使用了它其中的RedisTemplate ,发现存到redis中后,数据

Mybatis注解用法

MyBatis(八) mybatis注解 一、mybatis简单注解 1、@Select、@Results、@Result2、@Delete、@Param、@ResultMap3、@Insert、@SelectKey4、@Delete、@Param5、@Update二、动态SQL 1、简单处理,直接使用``脚本2、使用Provider注解标识 2.1、创建Provider类2.2、注解使用Prov

springMVC 参数绑定的注解

本文介绍了用于参数绑定的相关注解。 绑定:将请求中的字段按照名字匹配的原则填入模型对象。 SpringMVC就跟Struts2一样,通过拦截器进行参数匹配。 代码在 https://github.com/morethink/MySpringMVC URI模板变量 这里指uri template中variable(路径变量),不含queryString部分 @PathVariable

spring和tomcat初始化的类和注解

1.InitializingBean接口为bean提供了初始化方法的方式,它只包括afterPropertiesSet方法,凡是继承该接口的类,在初始化bean的时候会执行该方法。 spring为bean提供了两种初始化bean的方式,实现InitializingBean接口,实现afterPropertiesSet方法,或者在配置文件中同过init-method指定,两种方式可以同时使用 实

每天一道面试题(2):fail-safe 机制与 fail-fast 机制分别有什么作用?

当谈论Java集合的 fail-fast 和 fail-safe 机制时,涉及的是在集合被并发修改时的行为和处理方式。这些机制对保证程序的正确性和稳定性非常重要,尤其是在多线程环境中。 1. Fail-Fast 机制 定义: Fail-fast 机制的核心是在检测到集合在遍历过程中被修改时,立即抛出 ConcurrentModificationException 异常,从而中断迭代操作。这种

SpringDataJPA系列(7)Jackson注解在实体中应用

SpringDataJPA系列(7)Jackson注解在实体中应用 常用的Jackson注解 Springboot中默认集成的是Jackson,我们可以在jackson依赖包下看到Jackson有多个注解 一般常用的有下面这些: 一个实体的示例 测试方法如下: 按照上述图片中的序号做个简单的说明: 1处:指定序列化时候的顺序,先createDate然后是email

Java注解初探

什么是注解 注解(Annotation)是从JDK5开始引入的一个概念,其实就是代码里的一种特殊标记。这些标记可以在编译,类加载,运行时被读取,并执行相应的处理。通过注解开发人员可以在不改变原有代码和逻辑的情况下在源代码中嵌入补充信息。有了注解,就可以减少配置文件,现在越来越多的框架已经大量使用注解,而减少了XML配置文件的使用,尤其是Spring,已经将注解玩到了极致。 注解与XML配置各有