前言:
正所謂银择,天下武功,唯快不破累舷,在當(dāng)今生活節(jié)奏越來越快的時代浩考,我們也要講求效率,也要追求一個快字(不過有些方面還是不能快的被盈,不要當(dāng)快男哦)析孽。springboot就是能簡化配置、敏捷開發(fā)的東西只怎。做同一個項目袜瞬,用spring你可能還在寫xml,用springboot的話你可能已經(jīng)做完在約妹子了身堡!
歡迎大家關(guān)注我的公眾號 javawebkf吞滞,目前正在慢慢地將簡書文章搬到公眾號,以后簡書和公眾號文章將同步更新盾沫,且簡書上的付費文章在公眾號上將免費裁赠。
一、springboot簡介:
springboot赴精,說到底還是spring家族的佩捞,只不過用spring時我們要寫大量的xml配置各種東西,而springboot不用寫這些蕾哟,直接寫在application.properties或application.yml中即可一忱,相當(dāng)于那些復(fù)雜的配置springboot底層為我們配置好了,直接聲明一下就可以谭确。
二帘营、springboot常用知識點:
1、springboot對靜態(tài)資源的處理:
springboot項目中靜態(tài)資源的根目錄是:
src/main/resources/static
靜態(tài)資源如html頁面逐哈、圖片芬迄、js、css等都放在此文件夾或該文件夾的子文件夾下昂秃。比如在static下有water.jpg圖片禀梳,在沒有配置視圖解析器和訪問根路徑的情況下杜窄,
在瀏覽器直接輸入:
http://localhost:8080/water.jpg
即可訪問該圖片。
一般而言算途,會在static下建立pages文件夾用于存放頁面塞耕,js文件夾存放js代碼,css文件夾存放css嘴瓤。
2扫外、全局異常捕獲:
當(dāng)你訪問頁面出錯時,默認是404或500以及以一大串英文廓脆,自己寫了全局異常捕獲類就可以在出錯時顯示自己寫的內(nèi)容筛谚。
只需要編寫一個類加上注解即可,如下:
@ControllerAdvice
public class GlobalExceptionHandler{
@ExceptionHandler(RuntimeException.class)
@ResponseBody
public Map<String,Object> resultError(){
Map<String,Object> modelMap = new HashMap<String,Object>();
modelMap.put("errCode",500);
modelMap.put("errMsg","錯誤狞贱!");
return modelMap;
}
}
這實際上是用了spring的異常通知刻获。
3蜀涨、配置多環(huán)境:
在實際開發(fā)過程中瞎嬉,一般可能有以下4個環(huán)境:
test ------------------ 本地開發(fā)環(huán)境
sit ------------------ 測試環(huán)境
pre ------------------ 預(yù)生產(chǎn)環(huán)境
pid ------------------ 生產(chǎn)環(huán)境
那么如何為不同的生產(chǎn)環(huán)境配置不同的配置文件呢?首先得有如下5個.properties 配置
文件:
application.properties ------------------ 總配置文件
application-test.properties ------------------ 本地
application-sit.properties ------------------ 測試
application-pre.properties ------------------ 預(yù)生產(chǎn)
application-pid.properties ------------------ 生產(chǎn)
每個環(huán)境下的配置寫到對應(yīng)的配置文件中厚柳,然后在總配置文件application.properties中通過
spring.profiles.active =
讀取不同的配置文件氧枣,=test
時讀取application-test.properties
,=sit
時讀取application-sit.properties
别垮。
4便监、整合jdbcTemplate:
雖然jdbcTemplate用得不多了,也介紹一下如何整合碳想。
添加依賴:
<!-- 要用jdbcTemplate,除了數(shù)據(jù)庫依賴烧董,添加這一個即可 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId>
<version>2.0.2.RELEASE</version>
</dependency>
注入使用:
在需要使用的地方直接注入使用即可,如下:
public class test{
@AutoWired
private JdbcTemplate jdbcTemplate;
public void insertUser(String name,int age){
jdbcTemplate.update("insert into tb_user values(null,?,?)",name,age);
}
}
5胧奔、整合jpa:
添加依賴:
<!-- 除了數(shù)據(jù)庫依賴逊移,添加這一個即可 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
<version>2.0.2.RELEASE</version>
</dependency>
加注解:
在啟動類上添加兩個注解:@EntityScan("實體類所在的包")
,@EnableJpaRepositories("dao層所在包名")
龙填,如下圖:
@EnableJpaRepositories("com.zhu.dao")
@EntityScan("com.zhu.entity")
@SpringBootApplication
public class App{
public static void main(String[] args){
SpringApplication.run(App.class,args);
}
}
完成這兩步就可以使用jpa了胳泉。
6、整合mybatis:
添加依賴:
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>1.3.2</version>
</dependency>
加注解:
啟動類上加@MapperScan("dao層所在包名")
岩遗,若需要事務(wù)支持扇商,加上@EnableTransactionManagement
,如下:
@EnableTransactionManagement
@MapperScan("com.zhu.dao")
@SpringBootApplication
public class App{
public static void main(String[] args){
SpringApplication.run(App.class,args);
}
}
若mybatis基于注解形式宿礁,這樣就行了案铺,可以直接使用了,若mybatis基于xml形式梆靖,那就要在application.properties中配置如下內(nèi)容:
#掃描dao層接口對應(yīng)的xml文件
mybatis.mapper-locations=classpath:mapper/*.xml
#掃描mybatis的配置文件
mybatis.config-location=classpath:mybatis-config.xml
#起別名(可選),寫了這個在resultType中就不用寫實體類包名红且,直接寫類名即可
mybatis.type-aliases-package=com.zhu.entity
7坝茎、整合多數(shù)據(jù)源:
整合多數(shù)據(jù)源一般才用分包管理的辦法,比如test1包使用數(shù)據(jù)源1暇番,test2包使用數(shù)據(jù)源2嗤放。具體做法如下:
首先來看項目的目錄結(jié)構(gòu):
配置:
####整合多數(shù)據(jù)源#####
######數(shù)據(jù)源1:springboot1########
spring.datasource.springboot1.driverClassName = com.mysql.jdbc.Driver
spring.datasource.springboot1.url = jdbc:mysql:///springboot1
spring.datasource.springboot1.username = #
spring.datasource.springboot1.password = #
######數(shù)據(jù)源2:springboot2########
spring.datasource.springboot2.driverClassName = com.mysql.jdbc.Driver
spring.datasource.springboot2.url = jdbc:mysql:///springboot2
spring.datasource.springboot2.username = #
spring.datasource.springboot2.password = #
數(shù)據(jù)源1是連接的springboot1數(shù)據(jù)庫,數(shù)據(jù)源2是連接springboot2數(shù)據(jù)庫壁酬。以spring.datasource.springboot1.
和spring.datasource.springboot2.
來區(qū)分數(shù)據(jù)源1和數(shù)據(jù)2次酌。但是這屬于自定義的標(biāo)簽,springboot不會自動加載這兩個
數(shù)據(jù)源舆乔,因此要創(chuàng)建兩個配置類去加載這兩個數(shù)據(jù)源:
加載數(shù)據(jù)源:
/**
* 配置數(shù)據(jù)源1(springboot1)的類
* @author zhu
*
*/
@Configuration
//表示只要是在test01包下的岳服,都訪問springboot1數(shù)據(jù)源
@MapperScan(basePackages = "com.zhu.test01",sqlSessionFactoryRef = "springboot1SqlSessionFactory")
public class DataSource1Config {
//創(chuàng)建datasource
@Bean(name = "springboot1DataSource")
@ConfigurationProperties(prefix = "spring.datasource.springboot1")
@Primary
public DataSource testDataSource() {
return DataSourceBuilder.create().build();
}
//創(chuàng)建SqlSessionFactory并注入datasource
@Bean(name = "springboot1SqlSessionFactory")
@Primary
public SqlSessionFactory testSqlSessionFactory(@Qualifier("springboot1DataSource") DataSource dataSource)
throws Exception{
SqlSessionFactoryBean bean = new SqlSessionFactoryBean();
bean.setDataSource(dataSource);
return bean.getObject();
}
//創(chuàng)建事物管理并注入dataSource
@Bean(name = "springboot1TransactionManager")
@Primary
public DataSourceTransactionManager testTransactionManager(@Qualifier("springboot1DataSource") DataSource dataSource) {
return new DataSourceTransactionManager(dataSource);
}
//創(chuàng)建事物管理并注入sqlSessionFactory
@Bean(name = "springboot1SqlSessionTemplate")
@Primary
public SqlSessionTemplate testSqlSessionTemplate(@Qualifier("springboot1SqlSessionFactory")
SqlSessionFactory sqlSessionFactory) throws Exception {
return new SqlSessionTemplate(sqlSessionFactory);
}
}
/**
* 配置數(shù)據(jù)源2(springboot2)的類
* @author zhu
*
*/
@Configuration
//表示只要是在test02包下的,都訪問springboot2數(shù)據(jù)源
@MapperScan(basePackages = "com.zhu.test02",sqlSessionFactoryRef = "springboot2SqlSessionFactory")
public class DataSource2Config {
//創(chuàng)建datasource
@Bean(name = "springboot2DataSource")
@ConfigurationProperties(prefix = "spring.datasource.springboot2")
public DataSource testDataSource() {
return DataSourceBuilder.create().build();
}
//創(chuàng)建SqlSessionFactory并注入datasource
@Bean(name = "springboot2SqlSessionFactory")
public SqlSessionFactory testSqlSessionFactory(@Qualifier("springboot2DataSource") DataSource dataSource)
throws Exception{
SqlSessionFactoryBean bean = new SqlSessionFactoryBean();
bean.setDataSource(dataSource);
return bean.getObject();
}
//創(chuàng)建事物管理并注入dataSource
@Bean(name = "springboot2TransactionManager")
public DataSourceTransactionManager testTransactionManager(@Qualifier("springboot2DataSource") DataSource dataSource) {
return new DataSourceTransactionManager(dataSource);
}
//創(chuàng)建事物管理并注入sqlSessionFactory
@Bean(name = "springboot2SqlSessionTemplate")
public SqlSessionTemplate testSqlSessionTemplate(@Qualifier("springboot2SqlSessionFactory")
SqlSessionFactory sqlSessionFactory) throws Exception {
return new SqlSessionTemplate(sqlSessionFactory);
}
}
這樣就完成了這兩個數(shù)據(jù)源的加載希俩,由于有@MapperScan
指定包吊宋,prefix =
... 指定加載哪個數(shù)據(jù)源,所以就能實現(xiàn)test01包下的就使用springboot1這個數(shù)據(jù)庫颜武,test02包下的就使用springtboot2數(shù)據(jù)庫璃搜。至此就完成了多數(shù)據(jù)源的整合。注意其中一個數(shù)據(jù)源的加載時要加上@Primary
注解鳞上,否則會報錯这吻。
總結(jié):
以上就是springboot常用的一些功能,通過整合上面那些技術(shù)肯定已經(jīng)感受到了它的便捷篙议,聽說spring boot是以后的趨勢唾糯,趁早掌握!