SpringBoot非官方教程 | 第四篇:SpringBoot 整合JPA,springbootjpa

來源:互聯網
上載者:User

SpringBoot非官方教程 | 第四篇:SpringBoot 整合JPA,springbootjpa

轉載請標明出處: 
http://blog.csdn.net/forezp/article/details/70545038 
本文出自方誌朋的部落格

JPA全稱Java Persistence API.JPA通過JDK 5.0註解或XML描述對象-關係表的映射關係,並將運行期的實體物件持久化到資料庫中。

JPA 的目標之一是制定一個可以由很多供應商實現的API,並且開發人員可以編碼來實現該API,而不是使用私人供應商特有的API。

JPA是需要Provider來實現其功能的,Hibernate就是JPA Provider中很強的一個,應該說無人能出其右。從功能上來說,JPA就是Hibernate功能的一個子集。

添加相關依賴

添加spring-boot-starter-jdbc依賴:

<dependency>            <groupId>org.springframework.boot</groupId>            <artifactId>spring-boot-starter-data-jpa            </artifactId>        </dependency>

添加mysql串連類和串連池類:

    <dependency>            <groupId>mysql</groupId>            <artifactId>mysql-connector-java</artifactId>            <scope>runtime</scope>        </dependency> 
配置資料來源,在application.properties檔案配置:
spring:  datasource:    driver-class-name: com.mysql.jdbc.Driver    url: jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=utf8&characterSetResults=utf8    username: root    password: 123456  jpa:    hibernate:      ddl-auto: update  # 第一次簡表create  後面用update    show-sql: true

注意,如果通過jpa在資料庫中建表,將jpa.hibernate,ddl-auto改為create,建完表之後,要改為update,要不然每次重啟工程會刪除表並建立。

建立實體類

通過@Entity 表明是一個映射的實體類, @Id表明id, @GeneratedValue 欄位自動產生

@Entitypublic class Account {    @Id    @GeneratedValue    private int id ;    private String name ;    private double money;...  省略getter setter}
Dao層

資料訪問層,通過編寫一個繼承自 JpaRepository 的介面就能完成資料訪問,其中包含了幾本的單表查詢的方法,非常的方便。值得注意的是,這個Account 對象名,而不是具體的表名,另外Interger是主鍵的類型,一般為Integer或者Long

public interface AccountDao  extends JpaRepository<Account,Integer> {}
Web層

在這個栗子中我簡略了service層的書寫,在實際開發中,不可省略。新寫一個controller,寫幾個restful api來測試資料的訪問。

@RestController@RequestMapping("/account")public class AccountController {    @Autowired    AccountDao accountDao;    @RequestMapping(value = "/list", method = RequestMethod.GET)    public List<Account> getAccounts() {        return accountDao.findAll();    }    @RequestMapping(value = "/{id}", method = RequestMethod.GET)    public Account getAccountById(@PathVariable("id") int id) {        return accountDao.findOne(id);    }    @RequestMapping(value = "/{id}", method = RequestMethod.PUT)    public String updateAccount(@PathVariable("id") int id, @RequestParam(value = "name", required = true) String name,                                @RequestParam(value = "money", required = true) double money) {        Account account = new Account();        account.setMoney(money);        account.setName(name);        account.setId(id);        Account account1 = accountDao.saveAndFlush(account);        return account1.toString();    }    @RequestMapping(value = "", method = RequestMethod.POST)    public String postAccount(@RequestParam(value = "name") String name,                              @RequestParam(value = "money") double money) {        Account account = new Account();        account.setMoney(money);        account.setName(name);        Account account1 = accountDao.save(account);        return account1.toString();    }}

通過postman請求測試,代碼已經全部通過測試。

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.