Spring Boot 2.x基礎教程:使用JdbcTemplate訪
在第2章節中,我們介紹瞭如何透過Spring Boot來實現HTTP介面,以及圍繞HTTP介面相關的單元測試、文件生成等實用技能。但是,這些內容還不足以幫助我們構建一個動態應用的服務端程式。不論我們是要做App、小程式、還是傳統的Web站點,對於使用者的資訊、相關業務的內容,通常都需要對其進行儲存,而不是像第2章節中那樣,把使用者資訊儲存在記憶體中(重啟就丟了!)。
對於資訊的儲存,現在已經有非常非常多的產品可以選擇,其中不乏許多非常優秀的開源免費產品,比如:MySQL,Redis等。接下來,在第3章節,我們將繼續學習在使用Spring Boot開發服務端程式的時候,如何實現對各流行資料儲存產品的增刪改查操作。
作為資料訪問章節的第一篇,我們將從最為常用的關係型資料庫開始。透過一個簡單例子,學習在Spring Boot中最基本的資料訪問工具:JdbcTemplate。
資料來源配置
在我們訪問資料庫的時候,需要先配置一個資料來源,下面分別介紹一下幾種不同的資料庫配置方式。
首先,為了連線資料庫需要引入jdbc支援,在pom.xml
中引入如下配置:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>
嵌入式資料庫支援
嵌入式資料庫通常用於開發和測試環境,不推薦用於生產環境。Spring Boot提供自動配置的嵌入式資料庫有H2、HSQL、Derby,你不需要提供任何連線配置就能使用。
比如,我們可以在pom.xml
中引入如下配置使用HSQL
<dependency>
<groupId>org.hsqldb</groupId>
<artifactId>hsqldb</artifactId>
<scope>runtime</scope>
</dependency>
連線生產資料來源
以MySQL資料庫為例,先引入MySQL連線的依賴包,在pom.xml
中加入:
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.46</version>
</dependency>
在src/main/resources/application.properties
中配置資料來源資訊
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資料來源。
spring.datasource.jndi-name=java:jboss/datasources/customers
使用JdbcTemplate運算元據庫
Spring的JdbcTemplate是自動配置的,你可以直接使用@Autowired
或建構函式(推薦)來注入到你自己的bean中來使用。
下面就來一起完成一個增刪改查的例子:
準備資料庫
先建立User
表,包含屬性name
、age
。可以透過執行下面的建表語句::
CREATE TABLE `User` (
`name` varchar(100) COLLATE utf8mb4_general_ci NOT NULL,
`age` int NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci
編寫領域物件
根據資料庫中建立的User
表,建立領域物件:
@Data
@NoArgsConstructor
public class User {
private String name;
private Integer age;
}
這裡使用了Lombok的@Data
和@NoArgsConstructor
註解來自動生成各引數的Set、Get函式以及不帶引數的建構函式。如果您對Lombok還不瞭解,可以看看這篇文章:。
編寫資料訪問物件
- 定義包含有插入、刪除、查詢的抽象介面UserService
public interface UserService {
/**
* 新增一個使用者
*
* @param name
* @param age
*/
int create(String name, Integer age);
/**
* 根據name查詢使用者
*
* @param name
* @return
*/
List<User> getByName(String name);
/**
* 根據name刪除使用者
*
* @param name
*/
int deleteByName(String name);
/**
* 獲取使用者總量
*/
int getAllUsers();
/**
* 刪除所有使用者
*/
int deleteAllUsers();
}
- 透過
JdbcTemplate
實現UserService
中定義的資料訪問操作
@Service
public class UserServiceImpl implements UserService {
private JdbcTemplate jdbcTemplate;
UserServiceImpl(JdbcTemplate jdbcTemplate) {
this.jdbcTemplate = jdbcTemplate;
}
@Override
public int create(String name, Integer age) {
return jdbcTemplate.update("insert into USER(NAME, AGE) values(?, ?)", name, age);
}
@Override
public List<User> getByName(String name) {
List<User> users = jdbcTemplate.query("select NAME, AGE from USER where NAME = ?", (resultSet, i) -> {
User user = new User();
user.setName(resultSet.getString("NAME"));
user.setAge(resultSet.getInt("AGE"));
return user;
}, name);
return users;
}
@Override
public int deleteByName(String name) {
return jdbcTemplate.update("delete from USER where NAME = ?", name);
}
@Override
public int getAllUsers() {
return jdbcTemplate.queryForObject("select count(1) from USER", Integer.class);
}
@Override
public int deleteAllUsers() {
return jdbcTemplate.update("delete from USER");
}
}
編寫單元測試用例
- 建立對UserService的單元測試用例,透過建立、刪除和查詢來驗證資料庫操作的正確性。
@RunWith(SpringRunner.class)
@SpringBootTest
public class Chapter31ApplicationTests {
@Autowired
private UserService userSerivce;
@Before
public void setUp() {
// 準備,清空user表
userSerivce.deleteAllUsers();
}
@Test
public void test() throws Exception {
// 插入5個使用者
userSerivce.create("Tom", 10);
userSerivce.create("Mike", 11);
userSerivce.create("Didispace", 30);
userSerivce.create("Oscar", 21);
userSerivce.create("Linda", 17);
// 查詢名為Oscar的使用者,判斷年齡是否匹配
List<User> userList = userSerivce.getByName("Oscar");
Assert.assertEquals(21, userList.get(0).getAge().intValue());
// 查資料庫,應該有5個使用者
Assert.assertEquals(5, userSerivce.getAllUsers());
// 刪除兩個使用者
userSerivce.deleteByName("Tom");
userSerivce.deleteByName("Mike");
// 查資料庫,應該有5個使用者
Assert.assertEquals(3, userSerivce.getAllUsers());
}
}
上面介紹的JdbcTemplate
只是最基本的幾個操作,更多其他資料訪問操作的使用請參考:
透過上面這個簡單的例子,我們可以看到在Spring Boot下訪問資料庫的配置依然秉承了框架的初衷:簡單。我們只需要在pom.xml中加入資料庫依賴,再到application.properties中配置連線資訊,不需要像Spring應用中建立JdbcTemplate的Bean,就可以直接在自己的物件中注入使用。
程式碼示例
本文的相關例子可以檢視下面倉庫中的chapter3-1
目錄:
- Github:
- Gitee:
如果您覺得本文不錯,歡迎Star
支援,您的關注是我堅持的動力!
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/2041/viewspace-2824803/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Spring Boot 2.x基礎教程:使用JdbcTemplate訪問MySQL資料庫Spring BootJDBCMySql資料庫
- Spring Boot 2.x基礎教程:使用MongoDBSpring BootMongoDB
- Spring Boot 2.x基礎教程:EhCache快取的使用Spring Boot快取
- Spring Boot 2.x基礎教程:快速入門Spring Boot
- Spring Boot 2.x基礎教程:使用EhCache快取叢集Spring Boot快取
- Spring Boot 2.x基礎教程:使用集中式快取RedisSpring Boot快取Redis
- Spring Boot 2.x基礎教程:使用Flyway管理資料庫版本Spring Boot資料庫
- Spring Boot 2.x基礎教程:使用tinylog記錄日誌Spring Boot
- Spring Boot 2.x基礎教程:使用Redis的釋出訂閱功能Spring BootRedis
- Spring Boot 2.x基礎教程:事務管理入門Spring Boot
- Spring Boot 2.x基礎教程:工程結構推薦Spring Boot
- Spring Boot 2.x基礎教程:使用Elastic Job實現定時任務Spring BootAST
- Spring Boot 2.x基礎教程:MyBatis的多資料來源配置Spring BootMyBatis
- Spring Boot 2.x基礎教程:Swagger靜態文件的生成Spring BootSwagger
- Spring Boot 2.x基礎教程:配置後設資料的應用Spring Boot
- Spring Boot 2.x基礎教程:Spring Data JPA的多資料來源配置Spring Boot
- Spring Boot基礎教程:EhCache快取的使用Spring Boot快取
- Spring boot 五 jdbcTemplateSpring BootJDBC
- Spring Boot 2.x基礎教程:使用JTA實現多資料來源的事務管理Spring Boot
- JdbcTemplate基礎JDBC
- Spring Boot 2.X(七):Spring Cache 使用Spring Boot
- spring boot 2.xSpring Boot
- Spring Boot 基礎Spring Boot
- Spring WebFlux 基礎教程:WebSocket 使用SpringWebUX
- Spring boot學習(二) Spring boot基礎配置Spring Boot
- Spring Boot 學習-基礎Spring Boot
- Spring Boot In Practice (0):基礎Spring Boot
- 說說如何在 Spring Boot 中使用 JdbcTemplate 讀寫資料Spring BootJDBC
- Spring Boot 2.x 圖文教程 | 整合郵件傳送功能Spring Boot
- Spring Boot學習筆記---Spring Boot 基礎及使用idea搭建專案Spring Boot筆記Idea
- 使用Spring Boot和Elasticsearch教程Spring BootElasticsearch
- Spring Boot基礎:Spring Boot簡介與快速搭建(1)Spring Boot
- Java Web系列:Spring Boot 基礎JavaWebSpring Boot
- Spring Cloud基礎教程SpringCloud
- 響應式程式設計基礎教程:Spring Boot 與 Lettuce 整合程式設計Spring Boot
- Spring Boot 2.X 如何快速整合jpa?Spring Boot
- Spring Boot 2.x實戰之StateMachineSpring BootMac
- Spring JdbcTemplate之使用詳解SpringJDBC