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

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

Spring多數(shù)據(jù)源AOP動(dòng)態(tài)切換怎么實(shí)現(xiàn)-創(chuàng)新互聯(lián)

這篇文章主要講解了“Spring多數(shù)據(jù)源AOP動(dòng)態(tài)切換怎么實(shí)現(xiàn)”,文中的講解內(nèi)容簡(jiǎn)單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來(lái)研究和學(xué)習(xí)“Spring多數(shù)據(jù)源AOP動(dòng)態(tài)切換怎么實(shí)現(xiàn)”吧!

我們提供的服務(wù)有:成都做網(wǎng)站、成都網(wǎng)站設(shè)計(jì)、微信公眾號(hào)開(kāi)發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認(rèn)證、欽北ssl等。為成百上千家企事業(yè)單位解決了網(wǎng)站和推廣的問(wèn)題。提供周到的售前咨詢(xún)和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的欽北網(wǎng)站制作公司

一:新增多數(shù)據(jù)源類(lèi)

  1. public class DynamicDataSource extends AbstractRoutingDataSource {

  2.     @Override

  3.     protected Object determineCurrentLookupKey() {

  4.         return DataSourceContextHolder.getDataSource();

  5.     }

  6. }

點(diǎn)擊(此處)折疊或打開(kāi)

  1. public class DataSourceContextHolder {

  2.     private static final ThreadLocal contextHolder = new ThreadLocal();

  3.     public static void setDataSource(String dataSource) {

  4.         contextHolder.set(dataSource);

  5.     }

  6.     public static String getDataSource() {

  7.         return contextHolder.get();

  8.     }

  9. }


二:新增注解

點(diǎn)擊(此處)折疊或打開(kāi)

  1. @Retention(RetentionPolicy.RUNTIME)

  2. @Target(ElementType.METHOD)

  3. @Documented

  4. public @interface DataSource {

  5.     String value();

  6. }


三:新增AOP切面

點(diǎn)擊(此處)折疊或打開(kāi)

  1. @Aspect

  2. @Component

  3. public class DataSourceAspect {

  4.     @Pointcut("@annotation(com.gemdale.ghome.business.async.deal.center.demo.datasource.DataSource)")

  5.     public void dataSourcePointCut() {

  6.     };

  7.     @Before("dataSourcePointCut()")

  8.     public void before(JoinPoint joinPoint) {

  9.         System.out.println("=============dataSourcePointCut:before=============");

  10.         Object target = joinPoint.getTarget();

  11.         String method = joinPoint.getSignature().getName();

  12.         // Class[] classz = target.getClass().getInterfaces();

  13.         Class classz = target.getClass();

  14.         Class[] parameterTypes = ((MethodSignature) joinPoint.getSignature()).getMethod().getParameterTypes();

  15.         try {

  16.             // Method m = classz[0].getMethod(method, parameterTypes);

  17.             Method m = classz.getMethod(method, parameterTypes);

  18.             if (null != m && m.isAnnotationPresent(DataSource.class)) {

  19.                 DataSource dataSource = m.getAnnotation(DataSource.class);

  20.                 DataSourceContextHolder.setDataSource(dataSource.value());

  21.                 System.out.println("=============dataSource:" + dataSource.value());

  22.             }

  23.         }

  24.         catch (Exception e) {

  25.             e.printStackTrace();

  26.         }

  27.     }

  28. }


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

點(diǎn)擊(此處)折疊或打開(kāi)

  1. @Configuration

  2. public class DynamicTransactionManagerElConfig {

  3.     @Autowired

  4.     @Qualifier("platformTomcat")

  5.     private DataSource platformTomcat;

  6.     @Autowired

  7.     @Qualifier("platformReadTomcat")

  8.     private DataSource platformReadTomcat;

  9.     @Bean(name = "dataSource")

  10.     public DynamicDataSource dataSource() {

  11.         DynamicDataSource dataSource = new DynamicDataSource();

  12.         Map targetDataSources = new HashMap<>();

  13.         targetDataSources.put("master", platformTomcat);

  14.         targetDataSources.put("slave", platformReadTomcat);

  15.         dataSource.setTargetDataSources(targetDataSources);

  16.         dataSource.setDefaultTargetDataSource(platformTomcat);

  17.         return dataSource;

  18.     }

  19.     

  20.     

  21.     @Bean(name = "jdbcTemplate")

  22.     public JdbcTemplate jdbcTemplate(DynamicDataSource dataSource) {

  23.         JdbcTemplate jdbcTemplate = new JdbcTemplate();

  24.         jdbcTemplate.setDataSource(dataSource);

  25.         return jdbcTemplate;

  26.     }

  27.     @Bean(name = "jdbcReadTemplate")

  28.     public JdbcTemplate jdbcReadTemplate(DynamicDataSource dataSource) {

  29.         JdbcTemplate jdbcReadTemplate = new JdbcTemplate();

  30.         jdbcReadTemplate.setDataSource(dataSource);

  31.         return jdbcReadTemplate;

  32.     }

  33.     

  34.     @Bean(name = "transactionManager")

  35.     public DataSourceTransactionManager transactionManager(DynamicDataSource dataSource) {

  36.         DataSourceTransactionManager transactionManager = new DataSourceTransactionManager();

  37.         transactionManager.setDataSource(dataSource);

  38.         return transactionManager;

  39.     }

  40. }


五:應(yīng)用舉例

點(diǎn)擊(此處)折疊或打開(kāi)

  1. @Service("gmcSmsInfoBo")

  2. public class GmcSmsInfoBo extends AbstractBusinessObject {

  3.     @Autowired

  4.     private GmcSmsInfoDAO gmcSmsInfoDaoImpl;

  5.     // @CachePut(value = "GmcSmsInfoCache", key = "'GmcSmsInfo_'+#result.smsId")

  6.     // @Transactional(rollbackFor={Exception.class,RuntimeException.class})

  7.     @DataSource("master")

  8.     public GmcSmsInfo add(GmcSmsInfo smsInfo) throws BusinessServiceException {

  9.         System.out.println("=============add==========");

  10.         try {

  11.             smsInfo.setSmsId(gmcSmsInfoDaoImpl.save(smsInfo));

  12.         }

  13.         catch (FrameworkDAOException e) {

  14.             throw new BusinessServiceException(e);

  15.         }

  16.         return smsInfo;

  17.     }

  18.     // @Cacheable(value="GmcSmsInfoCache",key="'GmcSmsInfo_'+#smsId")

  19.     @DataSource("slave")

  20.     public GmcSmsInfo query(Integer smsId) throws BusinessServiceException {

  21.         System.out.println("=============query==========");

  22.         try {

  23.             return gmcSmsInfoDaoImpl.findById(GmcSmsInfo.class, smsId);

  24.         }

  25.         catch (Exception e) {

  26.             throw new BusinessServiceException(e);

  27.         }

  28.     }

  29. }

感謝各位的閱讀,以上就是“Spring多數(shù)據(jù)源AOP動(dòng)態(tài)切換怎么實(shí)現(xiàn)”的內(nèi)容了,經(jīng)過(guò)本文的學(xué)習(xí)后,相信大家對(duì)Spring多數(shù)據(jù)源AOP動(dòng)態(tài)切換怎么實(shí)現(xiàn)這一問(wèn)題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!


分享題目:Spring多數(shù)據(jù)源AOP動(dòng)態(tài)切換怎么實(shí)現(xiàn)-創(chuàng)新互聯(lián)
網(wǎng)站網(wǎng)址:http://weahome.cn/article/dicopo.html

其他資訊

在線咨詢(xún)

微信咨詢(xún)

電話(huà)咨詢(xún)

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部