在我們訪問數據庫的時候,需要先配置一個數據源,下面分別介紹一下幾種不同的數據庫配置方式。
首先,為了連接數據庫需要引入jdbc支持,在pom.xml中引入如下配置:
|
1
2
3
4
|
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>
|
嵌入式數據庫支持
嵌入式數據庫通常用於開發和測試環境,不推薦用於生產環境。Spring Boot提供自動配置的嵌入式數據庫有H2、HSQL、Derby,你不需要提供任何連接配置就能使用。
比如,我們可以在pom.xml中引入如下配置使用HSQL
|
1
2
3
4
5
|
<dependency>
<groupId>org.hsqldb</groupId>
<artifactId>hsqldb</artifactId>
<scope>runtime</scope>
</dependency>
|
連接生產數據源
以MySQL數據庫為例,先引入MySQL連接的依賴包,在pom.xml中加入:
|
1
2
3
4
5
|
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.21</version>
</dependency>
|
在src/main/resources/application.properties中配置數據源信息
|
1
2
3
4
|
spring.datasource.url=jdbc:mysql://localhost:3306/
test
spring.datasource.username=dbuser
spring.datasource.password=dbpass
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
|
連接JNDI數據源
當你將應用部署於應用服務器上的時候想讓數據源由應用服務器管理,那么可以使用如下配置方式引入JNDI數據源。
|
1
|
spring.datasource.jndi-name=java:jboss/datasources/customers
|
使用JdbcTemplate操作數據庫
Spring的JdbcTemplate是自動配置的,你可以直接使用@Autowired來注入到你自己的bean中來使用。
舉例:我們在創建User表,包含屬性name、age,下面來編寫數據訪問對象和單元測試用例。
- 定義包含有插入、刪除、查詢的抽象接口UserService
|
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
|
public interface UserService {
/**
* 新增一個用戶
*
@param name
*
@param age
*/
void create(String name, Integer age);
/**
* 根據name刪除一個用戶高
*
@param name
*/
void deleteByName(String name);
/**
* 獲取用戶總量
*/
Integer getAllUsers();
/**
* 刪除所有用戶
*/
void deleteAllUsers();
}
|
- 通過JdbcTemplate實現UserService中定義的數據訪問操作
|
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
|
public class UserServiceImpl implements UserService {
private JdbcTemplate jdbcTemplate;
public void create(String name, Integer age) {
jdbcTemplate.update(
"insert into USER(NAME, AGE) values(?, ?)", name, age);
}
public void deleteByName(String name) {
jdbcTemplate.update(
"delete from USER where NAME = ?", name);
}
public Integer getAllUsers() {
return jdbcTemplate.queryForObject("select count(1) from USER", Integer.class);
}
public void deleteAllUsers() {
jdbcTemplate.update(
"delete from USER");
}
}
|
- 創建對UserService的單元測試用例,通過創建、刪除和查詢來驗證數據庫操作的正確性。
|
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
|
public class ApplicationTests {
private UserService userSerivce;
public void setUp() {
// 准備,清空user表
userSerivce.deleteAllUsers();
}
public void test() throws Exception {
// 插入5個用戶
userSerivce.create(
"a", 1);
userSerivce.create(
"b", 2);
userSerivce.create(
"c", 3);
userSerivce.create(
"d", 4);
userSerivce.create(
"e", 5);
// 查數據庫,應該有5個用戶
Assert.assertEquals(
5, userSerivce.getAllUsers().intValue());
// 刪除兩個用戶
userSerivce.deleteByName(
"a");
userSerivce.deleteByName(
"e");
// 查數據庫,應該有5個用戶
Assert.assertEquals(
3, userSerivce.getAllUsers().intValue());
}
}
|
上面介紹的JdbcTemplate只是最基本的幾個操作,更多其他數據訪問操作的使用請參考:JdbcTemplate API
通過上面這個簡單的例子,我們可以看到在Spring Boot下訪問數據庫的配置依然秉承了框架的初衷:簡單。我們只需要在pom.xml中加入數據庫依賴,再到application.properties中配置連接信息,不需要像Spring應用中創建JdbcTemplate的Bean,就可以直接在自己的對象中注入使用。
