您好,登錄后才能下訂單哦!
我們先來(lái)回顧下,使用xml配置數(shù)據(jù)源。
先加載數(shù)據(jù)庫(kù)相關(guān)配置文件;
配置數(shù)據(jù)源;
配置sqlSessionFactory,注入數(shù)據(jù)源
具體如下:
先在spring的配置文件中,加載數(shù)據(jù)庫(kù)配置文件
編輯
<!-- 讀取參數(shù)配置 -->
<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<list>
<value>classpath:dbconfig.properties</value>
<value>classpath:redis.properties</value>
</list>
</property>
</bean>
編輯
<bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource" destroy-method="close">
<!-- 數(shù)據(jù)庫(kù)基本信息配置 -->
<property name="url" value="${url}" />
<property name="username" value="${username}" />
<property name="password" value="${password}" />
<property name="driverClassName" value="${driverClassName}" />
<property name="filters" value="${filters}" />
<!-- 最大并發(fā)連接數(shù) -->
<property name="maxActive" value="${maxActive}" />
<!-- 初始化連接數(shù)量 -->
<property name="initialSize" value="${initialSize}" />
<!-- 配置獲取連接等待超時(shí)的時(shí)間 -->
<property name="maxWait" value="${maxWait}" />
<!-- 最小空閑連接數(shù) -->
<property name="minIdle" value="${minIdle}" />
</bean>
編輯
有了大致的思路后,我們?cè)賮?lái)看看spring boot基于注解方式怎么配置數(shù)據(jù)源。
先要知道幾個(gè)注解:
@Configuration:此注解看用理解為spring的一個(gè)xml文件
@PropertySource:對(duì)應(yīng)原xml中設(shè)置配置文件的
@MapperScan:就是xml中掃描的基包;
sqlSessionFactoryRef:就是注入sqlSessionFactory的
@Bean:這個(gè)注解就是原xml中bean標(biāo)簽的。
先了解這幾個(gè)注解之后,我們就可以開(kāi)始寫(xiě)代碼了(在文章最后,凱哥會(huì)把xml和注解的對(duì)應(yīng)關(guān)系列出來(lái),方便大家理解)。
編輯
我們先來(lái)看看數(shù)據(jù)庫(kù)配置文件怎么配置的:
編輯
在看看代碼中怎么獲取到這些值的:
編輯
說(shuō)明:
通過(guò)上面注解之后,啟動(dòng)服務(wù)后,屬性:jdbcUrl這個(gè)屬性的值就會(huì)在classpath下的mysql-core-jdbc.properties文件中查找前綴為mysql.core的后面為:jdbc-url這個(gè)可以。從而就可以獲取到數(shù)據(jù)庫(kù)連接的url了。
數(shù)據(jù)庫(kù)連接信息獲取到了,接下來(lái),我們來(lái)配置datasource信息:
編輯
說(shuō)明:
通過(guò)這個(gè)bean注解之后,就可以獲取到dataSource對(duì)象了。
編輯
這樣就可以獲取到sqlSessionFactory對(duì)象了。
編輯
xml配置:一個(gè)xml文件
注解配置:@Configuration
xml配置示例:springApplication.xml
注解配置示例:
@Configuration
public class MysqlCoreConfig {}
xml配置:<bean></bean>
注解配置:@Bean
xml配置示例:
<bean id="propertyConfigurer"
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> </bean>
注解配置示例:
@Bean
public DataSource mysqlCoreDataSource() {}
Xml配置:<property name="locations"> </property>
注解配置:@PropertySource
Xml配置示例:
<property name="locations">
<list>
<value>classpath:dbconfig.properties</value>
</list>
</property>
注解配置示例:@PropertySource("classpath:mysql-core-jdbc.properties")
import lombok.Data;
import org.mybatis.spring.SqlSessionFactoryBean;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.PropertySource;
import org.springframework.core.io.support.PathMatchingResourcePatternResolver;
import javax.sql.DataSource;
/**
* 通過(guò)注解方式配置數(shù)據(jù)庫(kù)連接配置
*/
@Data
@Configuration
@ConfigurationProperties(prefix = "mysql.core")
@PropertySource("classpath:mysql-core-jdbc.properties")
@MapperScan(basePackages ="com.kaigejava.model.mappers" ,sqlSessionFactoryRef = "kaigeMysqlDataSource")
public class KaigeMySqlCoreConfig {
private String jdbcUrl;
private String jdbcUserName;
private String jdbcPassword;
private String jdbcDriver;
private String rootMapper; //mapper文件在classpath下存放的根路徑
private String aliasesPackage; //別名包
/**
* 配置連接池信息
* @return
*/
@Bean
public DataSource kaigeMysqlCreateDataSource(){
HikariDataSource dataSource = new HikariDataSource();
//添加數(shù)據(jù)庫(kù)訪問(wèn)url
dataSource.setJdbcUrl(getJdbcUrl());
dataSource.setUsername(getJdbcUserName());
dataSource.setPassword(getJdbcPassword());
dataSource.setDriverClassName(getJdbcDriver());
//配置最大 最小連接數(shù)量
dataSource.setMinimumIdle(50);
dataSource.setMinimumIdle(10);
return dataSource;
}
/**
* 獲取sqlSessionFactory
* @return
*/
public SqlSessionFactoryBean kaigeMysqlCoreSqlSessionFactory(@Qualifier("kaigeMysqlDataSource") DataSource kaigeMysqlDataSource)
throws Exception{
SqlSessionFactoryBean sqlSessionFactoryBean = new SqlSessionFactoryBean();
sqlSessionFactoryBean.setDataSource(kaigeMysqlDataSource);
//處理mapper位置的
PathMatchingResourcePatternResolver resourcePatternResolver = new PathMatchingResourcePatternResolver();
sqlSessionFactoryBean.setMapperLocations(resourcePatternResolver.getResources(getMapperFileRealPath()));
sqlSessionFactoryBean.setTypeAliasesPackage(getAliasesPackage());
org.apache.ibatis.session.Configuration mybatisConfig = new org.apache.ibatis.session.Configuration();
mybatisConfig.setMapUnderscoreToCamelCase(true);
sqlSessionFactoryBean.setConfiguration(mybatisConfig);
return sqlSessionFactoryBean;
}
/**
* 拼接mapper文件地址的
* @return
*/
public String getMapperFileRealPath(){
return new StringBuffer().append("classpath:").append(getRootMapper()).append("/**/*.xml").toString();
}
}
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。