我是靠谱客的博主 执着巨人,这篇文章主要介绍springboot+springJdbc+postgresql 实现多数据源的配置,现在分享给大家,希望可以做个参考。

背景

最近公司在服务拆迁,接口转移,相同的功能接口到要迁移到对应的服务中,因为时间比较赶,别问为什么没给时间,没人,没资源,但是活还是得干的,为了减少工作量和稳妥的需要分两步走

  • 先迁移相关代码,保证包的路径不变,请求接口的路径不变
  • 将迁移的相关代码进行迁表迁库(这目前还没做,计划9月实施)

实施

配置文件

数据库配置相关类

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
import com.alibaba.druid.pool.DruidDataSource; import java.io.Serializable; import java.sql.SQLException; public class JdbcConfig implements Serializable { public JdbcConfig() { super(); // TODO Auto-generated constructor stub } public boolean isDecrypt() { return decrypt; } public void setDecrypt(boolean decrypt) { this.decrypt = decrypt; } public String getDriverClass() { return driverClass; } public void setDriverClass(String driverClass) { this.driverClass = driverClass; } public String getTerminalUrl() { return terminalUrl; } public void setTerminalUrl(String terminalUrl) { this.terminalUrl = terminalUrl; } public String getSlaveurl() { return slaveurl; } public void setSlaveurl(String slaveurl) { this.slaveurl = slaveurl; } public String getUsername() { return username; } public void setUsername(String username) { this.username = username; } public String getPassword() { return password; } public void setPassword(String password) { this.password = password; } public int getInitialSize() { return initialSize; } public void setInitialSize(int initialSize) { this.initialSize = initialSize; } public int getMinIdle() { return minIdle; } public void setMinIdle(int minIdle) { this.minIdle = minIdle; } public int getMaxActive() { return maxActive; } public void setMaxActive(int maxActive) { this.maxActive = maxActive; } private boolean decrypt; private String driverClass; private String terminalUrl; private String slaveurl; private String username; private String password; private int initialSize; private int minIdle; private int maxActive; public DruidDataSource mainds() throws SQLException { DruidDataSource ds = ds(); ds.setUrl(terminalUrl); return ds; } public DruidDataSource slaveds() throws SQLException { DruidDataSource ds = ds(); ds.setUrl(slaveurl); return ds; } private DruidDataSource ds() throws SQLException { DruidDataSource ds = new DruidDataSource(); ds.setUrl(terminalUrl); ds.setUsername(username); ds.setPassword(password); ds.setFilters("config"); ds.setConnectionProperties("config.decrypt=" + decrypt); ds.setInitialSize(initialSize); ds.setMaxActive(maxActive); ds.setTimeBetweenEvictionRunsMillis(60000); ds.setMinEvictableIdleTimeMillis(300000); ds.setValidationQuery("select 'X'"); ds.setTestWhileIdle(true); ds.setTestOnBorrow(false); ds.setTestOnReturn(false); System.out.println("terminalUrl: " + terminalUrl); return ds; } }

相关配置

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
@Bean @ConfigurationProperties(prefix = "jdbc") public JdbcConfig jdbcConfig() { return new JdbcConfig(); } @Bean @ConfigurationProperties(prefix = "business.jdbc") public JdbcConfig businessJdbcConfig() { return new JdbcConfig(); } @Bean(initMethod = "init", destroyMethod = "close") public DruidDataSource businessDataSource() throws SQLException { return businessJdbcConfig().mainds(); } @Bean(initMethod = "init", destroyMethod = "close") public DruidDataSource masterDataSource() throws SQLException { return jdbcConfig().mainds(); } @Bean("jdbctemplate") public JdbcTemplate jdbcTemplate() throws SQLException { JdbcTemplate t = new JdbcTemplate(); t.setDataSource(masterDataSource()); return t; } @Bean("businessJdbctemplate") public JdbcTemplate businessjdbcTemplate() throws SQLException { JdbcTemplate t = new JdbcTemplate(); t.setDataSource(businessDataSource()); return t; }

使用

复制代码
1
2
3
4
5
6
7
8
9
@Bean public RobotDataDao robotDataDao() throws SQLException { RobotDataDao dao = new RobotDataDao(); dao.setJdbcTemplate(jdbcTemplate()); dao.setTableName("t_business_robot_data"); dao.setPrimaryKey("id"); dao.setSeqName("seq_t_business"); return dao; }
复制代码
1
2
3
4
5
6
7
8
9
@Bean public VDeviceDao vdeviceDao() throws SQLException { VDeviceDao dao = new VDeviceDao(); dao.setJdbcTemplate(businessjdbcTemplate()); dao.setTableName("t_device"); dao.setPrimaryKey("id"); dao.setSeqName("seq_t_default"); return dao; }

特别注意的,一定要配置的,因为现在有多数据源了就要配置对应的事务配置,单个默认的,多个就要指定

复制代码
1
2
3
4
5
6
7
@Configuration public class TransactionConfig { @Bean public PlatformTransactionManager bfscrmTransactionManager(@Qualifier("masterDataSource") DataSource masterDataSource) { return new DataSourceTransactionManager(masterDataSource); } }

这就配置好了多个数据源了

到此这篇关于springboot+springJdbc+postgresql 实现多数据源的配置的文章就介绍到这了,更多相关springboot+springJdbc+postgresql多数据源内容请搜索靠谱客以前的文章或继续浏览下面的相关文章希望大家以后多多支持靠谱客!

最后

以上就是执着巨人最近收集整理的关于springboot+springJdbc+postgresql 实现多数据源的配置的全部内容,更多相关springboot+springJdbc+postgresql内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(314)

评论列表共有 0 条评论

立即
投稿
返回
顶部