原文發佈於:http://www.gufeng.tech/ 穀風的我的主頁git
SpringCloud的ConfigServer默認是持久化使用的是git。git有它自然的優點,好比多版本管理、分支管理、提交審覈策略等等,可是若是相對其中存儲的數據作細粒度的權限控制,就力不從心了。固然,也能夠改變使用方式以適應這種特色,可是今天咱們要作的是將持久化從git遷移到MySQL上。spring
ConfigServer有個接口:org.springframework.cloud.config.server.environment.EnvironmentRepository,這個接口的實現類就是ConfigServer的用來查詢配置信息的,方法簽名以下:sql
Environment findOne(String application, String profile, String label);數據庫
咱們能夠實現這個接口,在方法實現中查詢MySQL,由此看來,咱們已經成功一半了,另外一半就是解決如何把數據存到MySQL中。咱們仍是先解決查詢的問題,咱們實現該方法內容以下:app
public class DatabasesEnvironmentRepository implements EnvironmentRepository { @Autowired private ConfigService configService; @Override public Environment findOne(String application, String profile, String label) { if (StringUtils.isEmpty(application) || StringUtils.isEmpty(profile)) return null; ConfigItem configItem = configService.findConfig(application, profile, label); if (configItem != null) { Environment environment = new Environment(application, StringUtils.commaDelimitedListToStringArray(profile), label, configItem.getVersion()); Map map = new HashMap<>(); for (ConfigProperty configProperty : configItem.getConfigProperties()) { map.put(configProperty.getKey(), configProperty.getValue()); } environment.add(new PropertySource(application + "_" + profile + "_" + label, map)); return environment; } return new Environment(application, StringUtils.commaDelimitedListToStringArray(profile)); } }
接下來咱們看一下ConfigService類的內容:ide
@Servicepublic class ConfigService { @Autowired private ConfigDAO configDAO; public ConfigItem findConfig(String application, String profile, String label) { ConfigItem configItem = configDAO.findConfig(application, profile, label); if (null == configItem) { return null; } List configProperties = configDAO.findConfigProperties(configItem.getId()); configItem.setConfigProperties(configProperties); return configItem; } }
最後咱們看一下ConfigDAO的實現:url
@Mapperpublic interface ConfigDAO { @Select("select * from config_item where application = #{application} and profile = #{profile} and label = #{label}") List findConfigProperties(@Param("application") String application, @Param("profile") String profile, @Param("label") String label); }
這裏咱們使用的是MyBatis的註解方式,關於MyBatis的註解使用詳細內容請查閱相關文檔。orm
咱們首先看下數據源的配置:server
@Configurationpublic class DataSourceConfiguration { @Value("${jdbc.driver}") private String driver; @Value("${jdbc.url}") private String url; @Value("${jdbc.username}") private String username; @Value("${jdbc.password}") private String password; @Value("${jdbc.maxActive}") private int maxActive; @Value("${jdbc.maxIdel}") private int maxIdel; @Value("${jdbc.maxWait}") private long maxWait; @Bean public BasicDataSource dataSource(){ BasicDataSource dataSource = new BasicDataSource(); dataSource.setDriverClassName(driver); dataSource.setUrl(url); dataSource.setUsername(username); dataSource.setPassword(password); dataSource.setMaxTotal(maxActive); dataSource.setMaxIdle(maxIdel); dataSource.setMaxWaitMillis(maxWait); dataSource.setValidationQuery("SELECT 1"); dataSource.setTestOnBorrow(true); return dataSource; } }
接下來看一下MyBatis的配置信息(固然,也可使用SpringJDBC來實現):接口
@Configuration @EnableTransactionManagement//支持事務
public class MyBatisConfig implements TransactionManagementConfigurer { @Autowired private DataSource dataSource; @Override public PlatformTransactionManager annotationDrivenTransactionManager() { return new DataSourceTransactionManager(dataSource); } @Bean(name = "sqlSessionFactory") public SqlSessionFactory sqlSessionFactoryBean() { SqlSessionFactoryBean bean = new SqlSessionFactoryBean(); bean.setDataSource(dataSource); try { return bean.getObject(); } catch (Exception e) { e.printStackTrace(); throw new RuntimeException(e); } } @Bean public SqlSessionTemplate sqlSessionTemplate(SqlSessionFactory sqlSessionFactory) { return new SqlSessionTemplate(sqlSessionFactory); } }
最後看一下ConfigProperty中都有哪些內容呢?至少包括如下內容:application, profile, label, key, value,其它內容能夠根據實際須要增減。
這裏提供兩種思路供參考:
一:在ConfigPropertity對應的表裏存儲當前使用的配置及歷史配置,經過版本(或者狀態位)加以區分,使用狀態位的好處是總體存儲數量會少一下,使用版本的好處是一下就可以查到某個歷史版本的數據而不須要通過分析;
二:分兩張表,一掌存儲當前生效正在使用的配置信息,另外一張表用來存儲歷史配置信息,每次有變化時都同時寫入兩張表,歷史表採用追加的方式,當前表採用更新的方式。
以上就是把ConfigServer的持久化存儲從git改到MySQL的一種作法。