您好,登錄后才能下訂單哦!
本文小編為大家詳細介紹“Jspxcms支持多數據源嗎”,內容詳細,步驟清晰,細節處理妥當,希望這篇“Jspxcms支持多數據源嗎”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。
首先要確定多數據源是指什么。
如果多數據源是指系統中的表分別放到不同數據庫里(比如,欄目表cms_node放到A數據庫,文章表cms_info放到B數據庫),這種情況是不支持的。
如果是系統中的表放到一個數據庫里,但還希望通過二次開發從其它數據庫里讀取一些數據,這種情況是可以的。
Jspxcms系統中使用的框架是spring-boot、spring-data-jpa。本質上說,是否支持多數據源只和這些框架有關,和系統本身無關。spring-boot官方文檔里有介紹多個數據源的配置方法 https://docs.spring.io/spring-boot/docs/1.5.20.RELEASE/reference/htmlsingle/#howto-two-datasources ,網上也有大量的教程。
配置文件src/main/resources/application.properties。
將默認數據庫配置的spring.datasource前綴改為app.datasource.first,另外再創建第二個數據源app.datasource.second。
#spring.datasource.url=jdbc:mysql://localhost/jspxcms?characterEncoding=utf8 #spring.datasource.username=root #spring.datasource.password=password #spring.datasource.driver-class-name=com.mysql.jdbc.Driver app.datasource.first.url=jdbc:mysql://localhost/jspxcms?characterEncoding=utf8 app.datasource.first.username=root app.datasource.first.password=password app.datasource.first.driver-class-name=com.mysql.jdbc.Driver app.datasource.second.url=jdbc:mysql://localhost/second_database?characterEncoding=utf8 app.datasource.second.username=root app.datasource.second.password=password app.datasource.second.driver-class-name=com.mysql.jdbc.Driver
在Java配置文件中增加數據源配置代碼com.jspxcms.core.Application。第二個數據源使用JdbcTemplate訪問數據。
@Bean @Primary @ConfigurationProperties("app.datasource.first") public DataSourceProperties dataSourceProperties() { return new DataSourceProperties(); } @Bean @Primary @ConfigurationProperties("app.datasource.first") public DataSource dataSource() { return dataSourceProperties().initializeDataSourceBuilder().build(); } @Bean @ConfigurationProperties("app.datasource.second") public DataSourceProperties secondDataSourceProperties() { return new DataSourceProperties(); } @Bean @ConfigurationProperties("app.datasource.second") public DataSource secondDataSource() { return secondDataSourceProperties().initializeDataSourceBuilder().build(); } @Bean public JdbcTemplate jdbcTemplate() { return new JdbcTemplate(secondDataSource()); }
至此多個數據源配置完成。使用范例如下:
@Controller public class MyController { @GetMapping("/second_data_source") public String index(HttpServletRequest request, org.springframework.ui.Model modelMap) { List<Map<String, Object>> data = jdbcTemplate.queryForList("select * from my_table"); for (Map<String, Object> d : data) { System.out.println(d.get("my_field")); } } @Autowired private JdbcTemplate jdbcTemplate; }
讀到這里,這篇“Jspxcms支持多數據源嗎”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。