本文介紹在Spring Boot基礎下配置數據源和經過JdbcTemplate編寫數據訪問的示例。html
在咱們訪問數據庫的時候,須要先配置一個數據源,下面分別介紹一下幾種不一樣的數據庫配置方式。java
首先,爲了鏈接數據庫須要引入jdbc支持,在pom.xml
中引入以下配置:mysql
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-jdbc</artifactId> </dependency>
好比,咱們能夠在pom.xml
中引入以下配置使用HSQLspring
<dependency> <groupId>org.hsqldb</groupId> <artifactId>hsqldb</artifactId> <scope>runtime</scope> </dependency>
pom.xml
中加入:鏈接生產數據源<dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>5.1.21</version> </dependency>
在src/main/resources/application.properties
中配置數據源信息sql
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數據源。數據庫
spring.datasource.jndi-name=java:jboss/datasources/customers
@Autowired
來注入到你本身的bean中來使用。使用JdbcTemplate操做數據庫舉例:咱們在建立User
表,包含屬性name
、age
,下面來編寫數據訪問對象和單元測試用例。api
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"); } }
@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()); } }
經過上面這個簡單的例子,咱們能夠看到在Spring Boot下訪問數據庫的配置依然秉承了框架的初衷:簡單。咱們只須要在pom.xml中加入數據庫依賴,再到application.properties中配置鏈接信息,不須要像Spring應用中建立JdbcTemplate的Bean,就能夠直接在本身的對象中注入使用。上面介紹的JdbcTemplate
只是最基本的幾個操做,更多其餘數據訪問操做的使用請參考:JdbcTemplate APIapp