本文介紹在Spring Boot基礎下配置數據源和經過JdbcTemplate編寫數據訪問的示例。html
數據源配置java
在咱們訪問數據庫的時候,須要先配置一個數據源,下面分別介紹一下幾種不一樣的數據庫配置方式。mysql
首先,爲了鏈接數據庫須要引入jdbc支持,在pom.xml中引入以下配置:spring
org.springframework.boot spring-boot-starter-jdbc 嵌入式數據庫支持嵌入式數據庫一般用於開發和測試環境,不推薦用於生產環境。Spring Boot提供自動配置的嵌入式數據庫有H二、HSQL、Derby,你不須要提供任何鏈接配置就能使用。sql
好比,咱們能夠在pom.xml中引入以下配置使用HSQL數據庫
org.hsqldb hsqldb runtime 鏈接生產數據源以MySQL數據庫爲例,先引入MySQL鏈接的依賴包,在pom.xml中加入:服務器
mysql mysql-connector-java 5.1.21 在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數據源app
當你將應用部署於應用服務器上的時候想讓數據源由應用服務器管理,那麼能夠使用以下配置方式引入JNDI數據源。框架
spring.datasource.jndi-name=java:jboss/datasources/customers 使用JdbcTemplate操做數據庫ide
Spring的JdbcTemplate是自動配置的,你能夠直接使用@Autowired來注入到你本身的bean中來使用。
舉例:咱們在建立User表,包含屬性name、age,下面來編寫數據訪問對象和單元測試用例。
定義包含有插入、刪除、查詢的抽象接口UserService 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中定義的數據訪問操做 @Service public class UserServiceImpl implements UserService {
@Autowired
private JdbcTemplate jdbcTemplate;
@Override
public void create(String name, Integer age) {
jdbcTemplate.update("insert into USER(NAME, AGE) values(?, ?)", name, age);
}
@Override
public void deleteByName(String name) {
jdbcTemplate.update("delete from USER where NAME = ?", name);
}
@Override
public Integer getAllUsers() {
return jdbcTemplate.queryForObject("select count(1) from USER", Integer.class);
}
@Override
public void deleteAllUsers() {
jdbcTemplate.update("delete from USER");
}
複製代碼
}
建立對UserService的單元測試用例,經過建立、刪除和查詢來驗證數據庫操做的正確性。
@RunWith(SpringJUnit4ClassRunner.class) @SpringApplicationConfiguration(Application.class) public class ApplicationTests {
@Autowired
private UserService userSerivce;
@Before
public void setUp() {
// 準備,清空user表
userSerivce.deleteAllUsers();
}
@Test
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
源碼來源:http://minglisoft.cn/honghu/technology.html經過上面這個簡單的例子,咱們能夠看到在Spring Boot下訪問數據庫的配置依然秉承了框架的初衷:簡單。咱們只須要在pom.xml中加入數據庫依賴,再到application.properties中配置鏈接信息,不須要像Spring應用中建立JdbcTemplate的Bean,就能夠直接在本身的對象中注入使用。