SpringBoot+Mybatis+ Druid+PageHelper 實現多資料來源並分頁
前言
本篇文章主要講述的是SpringBoot整合Mybatis、Druid和PageHelper 並實現多資料來源和分頁。其中SpringBoot整合Mybatis這塊,在之前的的一篇文章中已經講述了,這裡就不過多說明了。重點是講述在多資料來源下的如何配置使用Druid和PageHelper 。
Druid介紹和使用
在使用Druid之前,先來簡單的瞭解下Druid。
Druid是一個數據庫連線池。Druid可以說是目前最好的資料庫連線池!因其優秀的功能、效能和擴充套件性方面,深受開發人員的青睞。
Druid已經在阿里巴巴部署了超過600個應用,經過一年多生產環境大規模部署的嚴苛考驗。Druid是阿里巴巴開發的號稱為監控而生的資料庫連線池!
同時Druid不僅僅是一個數據庫連線池,Druid 核心主要包括三部分:
- 基於Filter-Chain模式的外掛體系。
- DruidDataSource 高效可管理的資料庫連線池。
- SQLParser
Druid的主要功能如下:
- 是一個高效、功能強大、可擴充套件性好的資料庫連線池。
- 可以監控資料庫訪問效能。
- 資料庫密碼加密
- 獲得SQL執行日誌
- 擴充套件JDBC
介紹方面這塊就不再多說,具體的可以看官方文件。
那麼開始介紹Druid如何使用。
首先是Maven依賴,只需要新增druid這一個jar就行了。
<dependency> <groupId>com.alibaba</groupId> <artifactId>druid</artifactId> <version>1.1.8</version> </dependency>
配置方面,主要的只需要在application.properties或application.yml新增如下就可以了。
說明:因為這裡我是用來兩個資料來源,所以稍微有些不同而已。Druid 配置的說明在下面中已經說的很詳細了,這裡我就不在說明了。
## 預設的資料來源 master.datasource.url=jdbc:mysql://localhost:3306/springBoot?useUnicode=true&characterEncoding=utf8&allowMultiQueries=true master.datasource.username=root master.datasource.password=123456 master.datasource.driverClassName=com.mysql.jdbc.Driver ## 另一個的資料來源 cluster.datasource.url=jdbc:mysql://localhost:3306/springBoot_test?useUnicode=true&characterEncoding=utf8 cluster.datasource.username=root cluster.datasource.password=123456 cluster.datasource.driverClassName=com.mysql.jdbc.Driver # 連線池的配置資訊 # 初始化大小,最小,最大 spring.datasource.type=com.alibaba.druid.pool.DruidDataSource spring.datasource.initialSize=5 spring.datasource.minIdle=5 spring.datasource.maxActive=20 # 配置獲取連線等待超時的時間 spring.datasource.maxWait=60000 # 配置間隔多久才進行一次檢測,檢測需要關閉的空閒連線,單位是毫秒 spring.datasource.timeBetweenEvictionRunsMillis=60000 # 配置一個連線在池中最小生存的時間,單位是毫秒 spring.datasource.minEvictableIdleTimeMillis=300000 spring.datasource.validationQuery=SELECT 1 FROM DUAL spring.datasource.testWhileIdle=true spring.datasource.testOnBorrow=false spring.datasource.testOnReturn=false # 開啟PSCache,並且指定每個連線上PSCache的大小 spring.datasource.poolPreparedStatements=true spring.datasource.maxPoolPreparedStatementPerConnectionSize=20 # 配置監控統計攔截的filters,去掉後監控介面sql無法統計,'wall'用於防火牆 spring.datasource.filters=stat,wall,log4j # 通過connectProperties屬性來開啟mergeSql功能;慢SQL記錄 spring.datasource.connectionProperties=druid.stat.mergeSql=true;druid.stat.slowSqlMillis=5000
成功添加了配置檔案之後,我們再來編寫Druid相關的類。
首先是MasterDataSourceConfig.java這個類,這個是預設的資料來源配置類。
@Configuration
@MapperScan(basePackages = MasterDataSourceConfig.PACKAGE, sqlSessionFactoryRef = "masterSqlSessionFactory")
public class MasterDataSourceConfig {
static final String PACKAGE = "com.pancm.dao.master";
static final String MAPPER_LOCATION = "classpath:mapper/master/*.xml";
@Value("${master.datasource.url}")
private String url;
@Value("${master.datasource.username}")
private String username;
@Value("${master.datasource.password}")
private String password;
@Value("${master.datasource.driverClassName}")
private String driverClassName;
@Value("${spring.datasource.initialSize}")
private int initialSize;
@Value("${spring.datasource.minIdle}")
private int minIdle;
@Value("${spring.datasource.maxActive}")
private int maxActive;
@Value("${spring.datasource.maxWait}")
private int maxWait;
@Value("${spring.datasource.timeBetweenEvictionRunsMillis}")
private int timeBetweenEvictionRunsMillis;
@Value("${spring.datasource.minEvictableIdleTimeMillis}")
private int minEvictableIdleTimeMillis;
@Value("${spring.datasource.validationQuery}")
private String validationQuery;
@Value("${spring.datasource.testWhileIdle}")
private boolean testWhileIdle;
@Value("${spring.datasource.testOnBorrow}")
private boolean testOnBorrow;
@Value("${spring.datasource.testOnReturn}")
private boolean testOnReturn;
@Value("${spring.datasource.poolPreparedStatements}")
private boolean poolPreparedStatements;
@Value("${spring.datasource.maxPoolPreparedStatementPerConnectionSize}")
private int maxPoolPreparedStatementPerConnectionSize;
@Value("${spring.datasource.filters}")
private String filters;
@Value("{spring.datasource.connectionProperties}")
private String connectionProperties;
@Bean(name = "masterDataSource")
@Primary
public DataSource masterDataSource() {
DruidDataSource dataSource = new DruidDataSource();
dataSource.setUrl(url);
dataSource.setUsername(username);
dataSource.setPassword(password);
dataSource.setDriverClassName(driverClassName);
//具體配置
dataSource.setInitialSize(initialSize);
dataSource.setMinIdle(minIdle);
dataSource.setMaxActive(maxActive);
dataSource.setMaxWait(maxWait);
dataSource.setTimeBetweenEvictionRunsMillis(timeBetweenEvictionRunsMillis);
dataSource.setMinEvictableIdleTimeMillis(minEvictableIdleTimeMillis);
dataSource.setValidationQuery(validationQuery);
dataSource.setTestWhileIdle(testWhileIdle);
dataSource.setTestOnBorrow(testOnBorrow);
dataSource.setTestOnReturn(testOnReturn);
dataSource.setPoolPreparedStatements(poolPreparedStatements);
dataSource.setMaxPoolPreparedStatementPerConnectionSize(maxPoolPreparedStatementPerConnectionSize);
try {
dataSource.setFilters(filters);
} catch (SQLException e) {
e.printStackTrace();
}
dataSource.setConnectionProperties(connectionProperties);
return dataSource;
}
@Bean(name = "masterTransactionManager")
@Primary
public DataSourceTransactionManager masterTransactionManager() {
return new DataSourceTransactionManager(masterDataSource());
}
@Bean(name = "masterSqlSessionFactory")
@Primary
public SqlSessionFactory masterSqlSessionFactory(@Qualifier("masterDataSource") DataSource masterDataSource)
throws Exception {
final SqlSessionFactoryBean sessionFactory = new SqlSessionFactoryBean();
sessionFactory.setDataSource(masterDataSource);
sessionFactory.setMapperLocations(new PathMatchingResourcePatternResolver()
.getResources(MasterDataSourceConfig.MAPPER_LOCATION));
return sessionFactory.getObject();
}
}
其中這兩個註解說明下:
@Primary :標誌這個 Bean 如果在多個同類 Bean 候選時,該 Bean
優先被考慮。多資料來源配置的時候注意,必須要有一個主資料來源,用 @Primary 標誌該 Bean。@MapperScan: 掃描 Mapper 介面並容器管理。
需要注意的是sqlSessionFactoryRef 表示定義一個唯一 SqlSessionFactory 例項。
上面的配置完之後,就可以將Druid作為連線池使用了。但是Druid並不簡簡單單的是個連線池,它也可以說是一個監控應用,它自帶了web監控介面,可以很清晰的看到SQL相關資訊。
在SpringBoot中運用Druid的監控作用,只需要編寫StatViewServlet和WebStatFilter類,實現註冊服務和過濾規則。這裡我們可以將這兩個寫在一起,使用@Configuration和@Bean。
為了方便理解,相關的配置說明也寫在程式碼中了,這裡就不再過多贅述了。
程式碼如下:
@Configuration
public class DruidConfiguration {
@Bean
public ServletRegistrationBean druidStatViewServle() {
//註冊服務
ServletRegistrationBean servletRegistrationBean = new ServletRegistrationBean(
new StatViewServlet(), "/druid/*");
// 白名單(為空表示,所有的都可以訪問,多個IP的時候用逗號隔開)
servletRegistrationBean.addInitParameter("allow", "127.0.0.1");
// IP黑名單 (存在共同時,deny優先於allow)
servletRegistrationBean.addInitParameter("deny", "127.0.0.2");
// 設定登入的使用者名稱和密碼
servletRegistrationBean.addInitParameter("loginUsername", "pancm");
servletRegistrationBean.addInitParameter("loginPassword", "123456");
// 是否能夠重置資料.
servletRegistrationBean.addInitParameter("resetEnable", "false");
return servletRegistrationBean;
}
@Bean
public FilterRegistrationBean druidStatFilter() {
FilterRegistrationBean filterRegistrationBean = new FilterRegistrationBean(
new WebStatFilter());
// 新增過濾規則
filterRegistrationBean.addUrlPatterns("/*");
// 新增不需要忽略的格式資訊
filterRegistrationBean.addInitParameter("exclusions",
"*.js,*.gif,*.jpg,*.png,*.css,*.ico,/druid/*");
System.out.println("druid初始化成功!");
return filterRegistrationBean;
}
}
編寫完之後,啟動程式,在瀏覽器輸入:http://127.0.0.1:8084/druid/index.html ,然後輸入設定的使用者名稱和密碼,便可以訪問Web介面了。
多資料來源配置
在進行多資料來源配置之前,先分別在springBoot和springBoot_test的mysql資料庫中執行如下指令碼。
-- springBoot庫的指令碼
CREATE TABLE `t_user` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增id',
`name` varchar(10) DEFAULT NULL COMMENT '姓名',
`age` int(2) DEFAULT NULL COMMENT '年齡',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8
-- springBoot_test庫的指令碼
CREATE TABLE `t_student` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(16) DEFAULT NULL,
`age` int(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8
注:為了偷懶,將兩張表的結構弄成一樣了!不過不影響測試!
在application.properties中已經配置這兩個資料來源的資訊,上面已經貼出了一次配置,這裡就不再貼了。
這裡重點說下 第二個資料來源的配置。和上面的MasterDataSourceConfig.java差不多,區別在與沒有使用@Primary 註解和名稱不同而已。需要注意的是MasterDataSourceConfig.java對package和mapper的掃描是精確到目錄的,這裡的第二個資料來源也是如此。那麼程式碼如下:
@Configuration
@MapperScan(basePackages = ClusterDataSourceConfig.PACKAGE, sqlSessionFactoryRef = "clusterSqlSessionFactory")
public class ClusterDataSourceConfig {
static final String PACKAGE = "com.pancm.dao.cluster";
static final String MAPPER_LOCATION = "classpath:mapper/cluster/*.xml";
@Value("${cluster.datasource.url}")
private String url;
@Value("${cluster.datasource.username}")
private String username;
@Value("${cluster.datasource.password}")
private String password;
@Value("${cluster.datasource.driverClassName}")
private String driverClass;
// 和MasterDataSourceConfig一樣,這裡略
@Bean(name = "clusterDataSource")
public DataSource clusterDataSource() {
DruidDataSource dataSource = new DruidDataSource();
dataSource.setUrl(url);
dataSource.setUsername(username);
dataSource.setPassword(password);
dataSource.setDriverClassName(driverClass);
// 和MasterDataSourceConfig一樣,這裡略 ...
return dataSource;
}
@Bean(name = "clusterTransactionManager")
public DataSourceTransactionManager clusterTransactionManager() {
return new DataSourceTransactionManager(clusterDataSource());
}
@Bean(name = "clusterSqlSessionFactory")
public SqlSessionFactory clusterSqlSessionFactory(@Qualifier("clusterDataSource") DataSource clusterDataSource)
throws Exception {
final SqlSessionFactoryBean sessionFactory = new SqlSessionFactoryBean();
sessionFactory.setDataSource(clusterDataSource);
sessionFactory.setMapperLocations(new PathMatchingResourcePatternResolver().getResources(ClusterDataSourceConfig.MAPPER_LOCATION));
return sessionFactory.getObject();
}
}
成功寫完配置之後,啟動程式,進行測試。
分別在springBoot和springBoot_test庫中使用介面進行新增資料。
t_user
POST http://localhost:8084/api/user
{"name":"張三","age":25}
{"name":"李四","age":25}
{"name":"王五","age":25}
t_student
POST http://localhost:8084/api/student
{"name":"學生A","age":16}
{"name":"學生B","age":17}
{"name":"學生C","age":18}
成功新增資料之後,然後進行呼叫不同的介面進行查詢。
請求:
GET http://localhost:8084/api/user?name=李四
返回:
{
"id": 2,
"name": "李四",
"age": 25
}
請求:
GET http://localhost:8084/api/student?name=學生C
返回:
{
"id": 1,
"name": "學生C",
"age": 16
}
通過資料可以看出,成功配置了多資料來源了。
PageHelper 分頁實現
PageHelper是Mybatis的一個分頁外掛,非常的好用!這裡強烈推薦!!!
PageHelper的使用很簡單,只需要在Maven中新增pagehelper這個依賴就可以了。
Maven的依賴如下:
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper-spring-boot-starter</artifactId>
<version>1.2.3</version>
</dependency>
注:這裡我是用springBoot版的!也可以使用其它版本的。
新增依賴之後,只需要新增如下配置或程式碼就可以了。
第一種,在application.properties或application.yml新增
pagehelper:
helperDialect: mysql
offsetAsPageNum: true
rowBoundsWithCount: true
reasonable: false
第二種,在mybatis.xml配置中新增
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<!-- 掃描mapping.xml檔案 -->
<property name="mapperLocations" value="classpath:mapper/*.xml"></property>
<!-- 配置分頁外掛 -->
<property name="plugins">
<array>
<bean class="com.github.pagehelper.PageHelper">
<property name="properties">
<value>
helperDialect=mysql
offsetAsPageNum=true
rowBoundsWithCount=true
reasonable=false
</value>
</property>
</bean>
</array>
</property>
</bean>
第三種,在程式碼中新增,使用@Bean註解在啟動程式的時候初始化。
@Bean
public PageHelper pageHelper(){
PageHelper pageHelper = new PageHelper();
Properties properties = new Properties();
//資料庫
properties.setProperty("helperDialect", "mysql");
//是否將引數offset作為PageNum使用
properties.setProperty("offsetAsPageNum", "true");
//是否進行count查詢
properties.setProperty("rowBoundsWithCount", "true");
//是否分頁合理化
properties.setProperty("reasonable", "false");
pageHelper.setProperties(properties);
}
因為這裡我們使用的是多資料來源,所以這裡的配置稍微有些不同。我們需要在sessionFactory這裡配置。這裡就對MasterDataSourceConfig.java進行相應的修改。在masterSqlSessionFactory方法中,新增如下程式碼。
@Bean(name = "masterSqlSessionFactory")
@Primary
public SqlSessionFactory masterSqlSessionFactory(@Qualifier("masterDataSource") DataSource masterDataSource)
throws Exception {
final SqlSessionFactoryBean sessionFactory = new SqlSessionFactoryBean();
sessionFactory.setDataSource(masterDataSource);
sessionFactory.setMapperLocations(new PathMatchingResourcePatternResolver()
.getResources(MasterDataSourceConfig.MAPPER_LOCATION));
//分頁外掛
Interceptor interceptor = new PageInterceptor();
Properties properties = new Properties();
//資料庫
properties.setProperty("helperDialect", "mysql");
//是否將引數offset作為PageNum使用
properties.setProperty("offsetAsPageNum", "true");
//是否進行count查詢
properties.setProperty("rowBoundsWithCount", "true");
//是否分頁合理化
properties.setProperty("reasonable", "false");
interceptor.setProperties(properties);
sessionFactory.setPlugins(new Interceptor[] {interceptor});
return sessionFactory.getObject();
}
注:其它的資料來源也想進行分頁的時候,參照上面的程式碼即可。
這裡需要注意的是reasonable引數,表示分頁合理化,預設值為false。如果該引數設定為 true 時,pageNum<=0 時會查詢第一頁,pageNum>pages(超過總數時),會查詢最後一頁。預設false 時,直接根據引數進行查詢。
設定完PageHelper 之後,使用的話,只需要在查詢的sql前面新增PageHelper.startPage(pageNum,pageSize);,如果是想知道總數的話,在查詢的sql語句後買呢新增 page.getTotal()就可以了。
程式碼示例:
public List<T> findByListEntity(T entity) {
List<T> list = null;
try {
Page<?> page =PageHelper.startPage(1,2);
System.out.println(getClassName(entity)+"設定第一頁兩條資料!");
list = getMapper().findByListEntity(entity);
System.out.println("總共有:"+page.getTotal()+"條資料,實際返回:"+list.size()+"兩條資料!");
} catch (Exception e) {
logger.error("查詢"+getClassName(entity)+"失敗!原因是:",e);
}
return list;
}
程式碼編寫完畢之後,開始進行最後的測試。
查詢t_user表的所有的資料,並進行分頁。
請求:
GET http://localhost:8084/api/user
返回:
[
{
"id": 1,
"name": "張三",
"age": 25
},
{
"id": 2,
"name": "李四",
"age": 25
}
]
控制檯列印:
開始查詢...
User設定第一頁兩條資料!
2018-04-27 19:55:50.769 DEBUG 6152 --- [io-8084-exec-10] c.p.d.m.UserDao.findByListEntity_COUNT : ==> Preparing: SELECT count(0) FROM t_user WHERE 1 = 1
2018-04-27 19:55:50.770 DEBUG 6152 --- [io-8084-exec-10] c.p.d.m.UserDao.findByListEntity_COUNT : ==> Parameters:
2018-04-27 19:55:50.771 DEBUG 6152 --- [io-8084-exec-10] c.p.d.m.UserDao.findByListEntity_COUNT : <== Total: 1
2018-04-27 19:55:50.772 DEBUG 6152 --- [io-8084-exec-10] c.p.dao.master.UserDao.findByListEntity : ==> Preparing: select id, name, age from t_user where 1=1 LIMIT ?
2018-04-27 19:55:50.773 DEBUG 6152 --- [io-8084-exec-10] c.p.dao.master.UserDao.findByListEntity : ==> Parameters: 2(Integer)
2018-04-27 19:55:50.774 DEBUG 6152 --- [io-8084-exec-10] c.p.dao.master.UserDao.findByListEntity : <== Total: 2
總共有:3條資料,實際返回:2兩條資料!
查詢t_student表的所有的資料,並進行分頁。
請求:
GET http://localhost:8084/api/student
返回:
[
{
"id": 1,
"name": "學生A",
"age": 16
},
{
"id": 2,
"name": "學生B",
"age": 17
}
]
控制檯列印:
開始查詢...
Studnet設定第一頁兩條資料!
2018-04-27 19:54:56.155 DEBUG 6152 --- [nio-8084-exec-8] c.p.d.c.S.findByListEntity_COUNT : ==> Preparing: SELECT count(0) FROM t_student WHERE 1 = 1
2018-04-27 19:54:56.155 DEBUG 6152 --- [nio-8084-exec-8] c.p.d.c.S.findByListEntity_COUNT : ==> Parameters:
2018-04-27 19:54:56.156 DEBUG 6152 --- [nio-8084-exec-8] c.p.d.c.S.findByListEntity_COUNT : <== Total: 1
2018-04-27 19:54:56.157 DEBUG 6152 --- [nio-8084-exec-8] c.p.d.c.StudentDao.findByListEntity : ==> Preparing: select id, name, age from t_student where 1=1 LIMIT ?
2018-04-27 19:54:56.157 DEBUG 6152 --- [nio-8084-exec-8] c.p.d.c.StudentDao.findByListEntity : ==> Parameters: 2(Integer)
2018-04-27 19:54:56.157 DEBUG 6152 --- [nio-8084-exec-8] c.p.d.c.StudentDao.findByListEntity : <== Total: 2
總共有:3條資料,實際返回:2兩條資料!
查詢完畢之後,我們再來看Druid 的監控介面。在瀏覽器輸入:http://127.0.0.1:8084/druid/index.html
可以很清晰的看到操作記錄!
如果想知道更多的Druid相關知識,可以檢視官方文件!
結語
這篇終於寫完了,在進行程式碼編寫的時候,碰到過很多問題,然後慢慢的嘗試和找資料解決了。本篇文章只是很淺的介紹了這些相關的使用,在實際的應用可能會更復雜。如果有有更好的想法和建議,歡迎留言進行討論!
參考文章:https://www.bysocket.com/?p=1712
Durid官方地址:https://github.com/alibaba/druid
PageHelper官方地址:https://github.com/pagehelper/Mybatis-PageHelper
專案我放到github上面去了:
https://github.com/xuwujing/springBoot
如果覺得不錯,希望順便給個star。
到此,本文結束,謝謝閱讀。
相關推薦
SpringBoot+Mybatis+ Druid+PageHelper 實現多資料來源並分頁
前言 本篇文章主要講述的是SpringBoot整合Mybatis、Druid和PageHelper 並實現多資料來源和分頁。其中SpringBoot整合Mybatis這塊,在之前的的一篇文章中已經講述了,這裡就不過多說明了。重點是講述在多資料來源下的如何配置使用Druid和PageHelper 。 Druid
SpringBoot+Mybatis+ Druid+PageHelper 實現多數據源並分頁
utf 重置數據 count system 配置文件 urn 規模 pos mapper 前言 本篇文章主要講述的是SpringBoot整合Mybatis、Druid和PageHelper 並實現多數據源和分頁。其中SpringBoot整合Mybatis這塊,在之前的的一篇
Spring Boot + Mybatis + Druid 動態切換多資料來源
在大型應用程式中,配置主從資料庫並使用讀寫分離是常見的設計模式。 在Spring應用程式中,要實現讀寫分離,最好不要對現有程式碼進行改動,而是在底層透明地支援。 這樣,就需要我們再一個專案中,配置兩個,乃至多個數據源。 今天,小編先來介紹一下自己配置動態多資料來源的步驟 專案簡介: 編譯器:ID
(六)springboot + mybatis plus實現多表聯查分頁3.X版本
註明 : 上兩篇文章我們講解了springboot+mybatis-plus對於單表的CRUD和條件構造器的使用方法,但是對於我們的實戰專案中多表聯查也是經常會出現的。今天我們就來說下怎麼在springboot+MP模式下實現多表聯查並分頁。 MP推薦使用的是
springboot + mybatis plus實現多表聯查分頁
auto score ice get pro err type 實現 app 1 配置分頁插件 public class MybatisPlusConfig { @Bean public PaginationInterceptor paginationInt
Spring-Boot+Mybaits+MySql多資料來源+通用分頁外掛PageHelper的使用
一、專案目錄結構圖二、pom依賴<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLoc
Spring Data JPA 二:實現多表關聯分頁查詢
最近在對JPA的使用過程中發現對於單表的操作很是方便,但是當設計到多表聯查的時候就需要有一些特殊的操作了。 專案中有一個場景是後臺需要做一個分頁的列表查詢,所需要的資料分散在兩張表中,如果是用mybatis的話直接定義resultMap,然後手寫SQL就可以了。而在JPA中就需要用到JPQL
java web jasperreport+ireport 實現多記錄自動分頁列印
建立一個printByJasperDemo.jsp,程式碼如下: <%@ page language="java" contentType="text/html; charset=UTF-8"pageEncoding="UTF-8"%> <%@ pagei
Maven+Mybatis+Spring+SpringMVC實現(oracle)分頁查詢(附原始碼)
關於專案搭建,小寶鴿以前寫過一篇Spirng+SpringMVC+Maven+Mybatis+MySQL專案搭建,這篇文章提供了詳細的搭建過程,而且提供了原始碼下載,接下來的將在這個原始碼的基礎上繼續開發。所以建議各位猿友可以把猿友下載一下。 二、分頁外掛的介紹 博主採用的外掛是PageHelpe
PageHelpher、MyBatis關聯查詢,多表查詢分頁問題
一般MyBatis作為ORM框架,需要做分頁一般會選擇使用PageHelper。PageHelper非常強大的分頁外掛,和mybatis整合也非常方便。PageHelper對單表分頁或者整體結果集分頁是比較方便的。 不過有時我們會遇到這樣的問題。利用MyBatis做多表
springboot+mybatis+druid實現多資料來源配置,支援註解和xml兩種sql書寫方式
https://github.com/cheegoday/springboot-demo-djg 要點: 一、依次建立以下幾個Bean 資料來源:DataSource session工廠:SqlSessionFactory 執行緒安全session:Sql
springboot+mybatis+druid 多資料來源整合
前言:在上一篇文章裡面我們進行了spring boot 和 mybatis 的整合 《springboot整合mybatis使用druid資料來源》, 文中是使用的單資料來源,因為專案中有很多需要用到多資料來源的場景,比如主從同步(讀寫分離)
Spring Boot配置多資料來源並實現Druid自動切換
SpringBoot多資料來源切換,先上配置檔案: 1.pom: <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0"
SpringBoot+Mybatis+Druid動態多資料來源
背景 前兩天突然想起了,咕泡老師寫的原始碼中有關於多資料來源的實現。翻出來看了看,想移植到springboot裡面去,可是移動過去,不起作用,而後又百度了些大神做法,還是不起作用,故自己研究了一番,最終實現了mybatis的動態資料來源。水平有限,還請大佬輕噴,
Springboot整合mybatis實現多資料來源
1:SpringBoot整合mybatis實現多資料來源有兩種方法 1:靜態方式 將每個資料來源都實現一個mybatis的sqlSessionFactory中,但是這種方法,缺點在於:你有幾個資料來源都會有幾個mybatis的配置類;對於資料來源的事務也不是很
springboot+mybatis+druid 多資料來源
Druid介紹和使用 在使用Druid之前,先來簡單的瞭解下Druid。 Druid是一個數據庫連線池。Druid可以說是目前最好的資料庫連線池!因其優秀的功能、效能和擴充套件性方面,深受開發人員的青睞。 Druid已經在阿里巴巴部署了超過600個應用,經過一年多生產環境大規模部署的嚴苛考驗
springboot配置多資料來源並整合Druid
1.application.properties配置檔案 spring.datasource.type = com.alibaba.druid.pool.DruidDataSource #----DS1---- spring.datasource.primary.u
Springboot+Mybatis實現多資料來源配置
1、預設application.properties配置檔案增加多資料來源配置,也可另行自己增加新的配置檔案獨立維護 ## master資料來源[主端業務]:用於mybatis自動程式碼生成呼叫及spring對資料庫的系列操作 master.datasource.url=j
SpringBoot+mybatis+Druid多資料來源切換
1. 配置application.properties #primary db spring.datasource.primary.url=jdbc:mysql://127.0.0.1:3306/master?characterEncoding=utf-8
springboot+Mybatis配置實現多資料來源
簡述 應公司需求,結合網上的許多資料和公司專案配置實現多資料來源。在此記錄一下配置過程,以供大家參考。 專案簡介 框架用的是SpringBoot+Mybatis,初始資料庫是MySQL,具體MySQL的整合在這裡不做詳細說明,要求是新增一個Oracle