Spring 多資料來源 AOP 動態切換

百聯達發表於2017-04-06
一:新增多資料來源類


點選(此處)摺疊或開啟

  1. public class DynamicDataSource extends AbstractRoutingDataSource {

  2.     @Override
  3.     protected Object determineCurrentLookupKey() {
  4.         return DataSourceContextHolder.getDataSource();
  5.     }

  6. }


點選(此處)摺疊或開啟

  1. public class DataSourceContextHolder {

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

  3.     public static void setDataSource(String dataSource) {
  4.         contextHolder.set(dataSource);
  5.     }

  6.     public static String getDataSource() {
  7.         return contextHolder.get();
  8.     }

  9. }



二:新增註解


點選(此處)摺疊或開啟

  1. @Retention(RetentionPolicy.RUNTIME)
  2. @Target(ElementType.METHOD)
  3. @Documented
  4. public @interface DataSource {
  5.     String value();
  6. }


三:新增AOP切面


點選(此處)摺疊或開啟

  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. }

四:資料來源配置


點選(此處)摺疊或開啟

  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<Object, Object> 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. }


五:應用舉例


點選(此處)摺疊或開啟

  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. }

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/28624388/viewspace-2136769/,如需轉載,請註明出處,否則將追究法律責任。

相關文章