springboot data jpa
1. 介紹
1.1 什么是jpa适室?
jpa是java persistence API。是java持久層的標(biāo)準(zhǔn)举瑰,起源于EJB3.0捣辆。描述的是領(lǐng)域模型和關(guān)系表的映射,并持久化到數(shù)據(jù)庫中此迅。實現(xiàn)該標(biāo)準(zhǔn)的廠商有:
- hibernate
- openjpa
1.2 什么是spring data jpa汽畴?
spring致力于減少數(shù)據(jù)訪問層(DAO)的開發(fā)工作量,對標(biāo)準(zhǔn)jpa的包裝耸序。開發(fā)者只需要生成持久層接口即可忍些。開發(fā)者不需要關(guān)注:
- EntityManager如何創(chuàng)建
- 基本的增刪改查方法不用編寫
- 事物如何提交
1.3 本文的重點
本文主要講解如何在 springboot 中使用 spring data jpa,使用hibernate作為jpa的實現(xiàn)坎怪,使用mysql作為數(shù)據(jù)庫罢坝。
2. 修改工程
依據(jù)第一章節(jié)的樣例工程,進(jìn)行更改搅窿。
2.1 修改POM
在pom中增加jpa相關(guān)的maven依賴
<!-- jpa的pom插件 (包括了spring-jpa嘁酿、hibernate疾棵、spring jdbc)-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<!-- DB -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
2.2 修改application.properties
主要是增加數(shù)據(jù)源和JPA相關(guān)的配置,具體內(nèi)容如下:
#數(shù)據(jù)源配置
spring.datasource.url=jdbc:mysql://localhost:3306/spring-boot-demo?characterEncoding=utf-8&autoReconnect=true
spring.datasource.username=root
spring.datasource.password=root
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
spring.datasource.max-active=5
spring.datasource.max-idle=3
spring.datasource.test-on-borrow=true
spring.datasource.test-while-idle=true
spring.datasource.validation-query=SELECT 1;
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
#jpa屬性配置
spring.jpa.database = MYSQL
spring.jpa.show-sql = true
spring.jpa.hibernate.ddlAuto = update
spring.jpa.hibernate.naming-strategy = org.hibernate.cfg.ImprovedNamingStrategy
spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.MySQL5Dialect
#hibernate實體類掃描包路徑
entitymanager.packagesToScan=pers.mateng
3. 業(yè)務(wù)編碼
3.1 創(chuàng)建領(lǐng)域模型
package pers.mateng.demo.springboot.domain;
@Entity
@Table(name="TB_USER")
public class User {
@Id
@GeneratedValue(strategy=GenerationType.AUTO)
@Column(name="U_ID")
private Long id;
@Column(name="U_NAME", nullable = false, length=32, unique=true)
private String name;
@Column(name="U_AGE", length=4)
private Integer age;
get/set……
}
3.2 創(chuàng)建DAO
package pers.mateng.demo.springboot.dao;
import org.springframework.data.jpa.repository.JpaRepository;
import pers.mateng.springdemo.domain.User;
/**
* 用戶管理增刪改查的dao
* @author mateng
*
*/
public interface UserDao extends JpaRepository<User, Long> {
}
3.3 創(chuàng)建controller
package pers.mateng.demo.springboot.controller;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
import pers.mateng.demo.springboot.dao.UserDao;
import pers.mateng.demo.springboot.domain.User;
/**
* 用戶管理的controller
* @author mateng
*/
@RestController
public class UserController {
@Autowired
private UserDao userDao;
@RequestMapping(method=RequestMethod.GET)
public List<User> findAll() {
return userDao.findAll();
}
@RequestMapping(method=RequestMethod.POST)
public User add(@ModelAttribute User user) {
return userDao.save(user);
}
@RequestMapping(path="/{id}", method=RequestMethod.GET)
public User findById(@PathVariable Long id) {
return userDao.findOne(id);
}
}
4. 驗證
使用eclipse的run as重新啟動Application的main函數(shù)
使用如下命令測試增加痹仙、查詢接口。注意:下面連接中的ip地址(當(dāng)前開發(fā)機(jī)器的ip地址)
1殉了、增加:
curl -X POST --header 'Content-Type: application/x-www-form-urlencoded' -d "name=zhansan&age=30" 'http://192.168.50.7:8888/user'
2开仰、查詢:
查詢?nèi)?/p>
curl -X GET 'http://192.168.50.7:8888/user'
根據(jù)id查詢
curl -X GET 'http://192.168.50.7:8888/user/1'