真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

如何實現(xiàn)SpringBoot2.x集成JPA快速開發(fā)

小編這次要給大家分享的是如何實現(xiàn)Spring Boot2.x集成JPA快速開發(fā),文章內(nèi)容豐富,感興趣的小伙伴可以來了解一下,希望大家閱讀完這篇文章之后能夠有所收獲。

創(chuàng)新互聯(lián)公司專注于興賓企業(yè)網(wǎng)站建設(shè),響應(yīng)式網(wǎng)站設(shè)計,成都做商城網(wǎng)站。興賓網(wǎng)站建設(shè)公司,為興賓等地區(qū)提供建站服務(wù)。全流程定制網(wǎng)站制作,專業(yè)設(shè)計,全程項目跟蹤,創(chuàng)新互聯(lián)公司專業(yè)和態(tài)度為您提供的服務(wù)

 什么是JPA

一種規(guī)范,并非ORM框架,也就是ORM上統(tǒng)一的規(guī)范

  • spring-boot-starter-data-jpa 是Spring Boot的項目,包含了spring-data-jpa和一些其他依賴用于Spring Boot項目
  • spring-data-jpa 是Spring Data的項目,就是本體,用于任何項目

解決

  • 為了執(zhí)行簡單查詢分頁,編寫太多重復(fù)代碼
  • 基于JPA的數(shù)據(jù)訪問層的增強支持

用了之后可以做什么,為什么要用?如下代碼解釋

實體類

package com.example.springredis.entity;

import lombok.Data;

import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import java.io.Serializable;

@Entity
@Data
public class User implements Serializable {
  @Id
  @GeneratedValue(strategy = GenerationType.AUTO)
  private Long id;
  private String name;
  private String account;
  private String pwd;

}

dao層

@Repository
public interface UserDao extends JpaRepository {

}

測試類

@Autowired
  private UserDao userDao;

  public void findAllTest() {
    System.out.println(userDao.findAll().toString());
  }

上面的操作已經(jīng)完成了一個查詢?nèi)?,相信不用在做多余的解釋?/p>

JPA優(yōu)點:主要就是簡單易用,集成方便,可以不用寫SQL語句

準備工作

  • JDK 1.8 以上
  • IDEA 2020.3
  • Gradle 5+ 或者 Maven 3.5+
  • 在 https://start.spring.io/ 初始化一個項目

如何實現(xiàn)Spring Boot2.x集成JPA快速開發(fā)

這里使用的是Maven,下載之后請在IDEA導(dǎo)入項目

項目結(jié)構(gòu)圖

如何實現(xiàn)Spring Boot2.x集成JPA快速開發(fā)

先看pom.xml配置

國外依賴下載慢,更換阿里源

<?xml version="1.0" encoding="UTF-8"?>

  4.0.0
  
    org.springframework.boot
    spring-boot-starter-parent
    2.3.0.RELEASE
     
  
  com.example
  springboot-jpa
  0.0.1-SNAPSHOT
  springboot-jpa
  Demo project for Spring Boot

  
    1.8
  

  
    
      org.springframework.boot
      spring-boot-starter-data-jpa
    
    
      org.springframework.boot
      spring-boot-starter-web
    

    
      com.h3database
      h3
      runtime
    
    
      org.projectlombok
      lombok
      true
    
    
      org.springframework.boot
      spring-boot-starter-test
      test
    
  
  
    
      
        org.springframework.boot
        spring-boot-maven-plugin
      
    
  

  
    
    
      aliyun
      aliyun
      https://maven.aliyun.com/repository/public
      
        true
      
      
        false
      
    
    
    
      spring-milestones
      Spring Milestones
      https://maven.aliyun.com/repository/spring
      
        true
      
      
        false
      
    
  

定義一個實體對象 SysUser.java

package com.example.demo.model;

import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;

import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;

@Data
@NoArgsConstructor
@AllArgsConstructor
@Entity(name = "sys_user")
public class SysUser {

  @Id
  @GeneratedValue(strategy = GenerationType.AUTO)
  private Long id;

  private String email;

  private String username;

  private String password;

  public SysUser(String email, String username, String password) {
    this.email = email;
    this.username = username;
    this.password = password;
  }
}
  • 這里有一個 **SysUser**  類, @NoArgsConstructor   默認構(gòu)造函數(shù)僅為JPA而存在。
  • 另一個構(gòu)造函數(shù)是您將用于創(chuàng)建要保存到數(shù)據(jù)庫的user實例的構(gòu)造函數(shù)。
  • 在類上加 @Entity   注解,表示這個是一個 JPA 的實體,如果在類上沒有加 @Table  注解,表明該實體將映射到名為 sys_user   的表,如果要加上,可以在其 name 屬性里寫入表名,如: @Table(name = "t_user")  
  • id  屬性使用 @Id  注釋,以便JPA將其識別為對象的ID.
  • @GeneratedValue(strategy = GenerationType.AUTO) 自增長ID策略

 創(chuàng)建一個 UserRepository.java 接口

這里很簡單,直接繼承核心接口 JpaRepository

package com.example.demo.repository;

import com.example.demo.model.SysUser;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;

@Repository
public interface UserRepository extends JpaRepository {

}

如何實現(xiàn)Spring Boot2.x集成JPA快速開發(fā)

配置文件application.yml

修改application.properties 為 application.yml

src/main/resources/application.yml

spring:
 datasource:
  driverClassName: org.h3.Driver
  password: root
  url: jdbc:h3:mem:demodb:file:data/demo
  username: root
 jpa:
  open-in-view: true
  database-platform: org.hibernate.dialect.H2Dialect
  # spring.jpa.show-sql=true 配置在日志中打印出執(zhí)行的 SQL 語句信息。
  show-sql: true
  # 配置指明在程序啟動的時候要刪除并且創(chuàng)建實體類對應(yīng)的表。
  # create 這個參數(shù)很危險,因為他會把對應(yīng)的表刪除掉然后重建。所以千萬不要在生成環(huán)境中使用。只有在測試環(huán)境中,一開始初始化數(shù)據(jù)庫結(jié)構(gòu)的時候才能使用一次。
  # ddl-auto:create----每次運行該程序,沒有表格會新建表格,表內(nèi)有數(shù)據(jù)會清空
  # ddl-auto:create-drop----每次程序結(jié)束的時候會清空表
  # ddl-auto:update----每次運行程序,沒有表格會新建表格,表內(nèi)有數(shù)據(jù)不會清空,只會更新(推薦)
  # ddl-auto:validate----運行程序會校驗數(shù)據(jù)與數(shù)據(jù)庫的字段類型是否相同,不同會報錯
  hibernate.ddl-auto: update

h3數(shù)據(jù)庫

在resources 文件夾下新建 data.sql

data.sql

DROP TABLE IF EXISTS sys_user;

CREATE TABLE sys_user
(
  id    INT AUTO_INCREMENT PRIMARY KEY,
  email  VARCHAR(250) DEFAULT NULL,
  username VARCHAR(250) NOT NULL,
  password VARCHAR(250) NOT NULL
);

測試類進行測試 SpringbootJpaApplicationTests.java

package com.example.demo;

import com.example.demo.model.SysUser;
import com.example.demo.repository.UserRepository;
import lombok.extern.slf4j.Slf4j;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;

@Slf4j
@RunWith(SpringRunner.class)
@SpringBootTest
public class SpringbootJpaApplicationTests {

  @Autowired
  private UserRepository userRepository;

  @Before
  public void add() {
    userRepository.save(new SysUser("123@qq.com", "root", "root"));
  }

  @Test
  public void contextLoads() {
    System.out.println(userRepository.findAll().toString());
  }

  //修改操作
  @After
  public void update() {
    // ifPresent 如果存在值,則使用值調(diào)用指定的使用者,否則不執(zhí)行任何操作。
    userRepository.findById(1L).ifPresent(user -> {
      user.setUsername("馬華云騰");
      userRepository.save(user);
      System.out.println(user.toString());
    });
  }

  //刪除
  @After
  public void del() {
    userRepository.findById(2L).ifPresent(user -> userRepository.delete(user));
  }

}

測試輸出

如何實現(xiàn)Spring Boot2.x集成JPA快速開發(fā)

常見異常

如果出現(xiàn)下列等錯誤:

Error:(41, 13) java: 找不到符號
符號: 方法 setName(java.lang.String)
位置: 類型為com.example.springbootjpademo.entity.User的變量 user

請注意下面的設(shè)置是否正確:

如何實現(xiàn)Spring Boot2.x集成JPA快速開發(fā)

RestClient API 測試

如何實現(xiàn)Spring Boot2.x集成JPA快速開發(fā)

### 新增1

POST http://localhost:8080/user/add
Content-Type: application/json

{
 "email": "eyck@aws.com",
 "username": "root",
 "password": "root"
}

### 新增2

POST http://localhost:8080/user/add
Content-Type: application/json

{
"email": "ekko@aws.com",
"username": "ekko",
"password": "ekko"
}

### 修改

PUT http://localhost:8080/user/update
Content-Type: application/json

{
 "id": 1,
 "email": "eyck@aws.com",
 "username": "root",
 "password": "root"
}

### 獲取所有
GET http://localhost:8080/user/all
Accept: */*
Cache-Control: no-cache

### 刪除

PUT http://localhost:8080/user/del/2

### 獲取所有
GET http://localhost:8080/user/all
Accept: */*
Cache-Control: no-cache

左上角 Run all ...

測試結(jié)果....

如何實現(xiàn)Spring Boot2.x集成JPA快速開發(fā)

看完這篇關(guān)于如何實現(xiàn)Spring Boot2.x集成JPA快速開發(fā)的文章,如果覺得文章內(nèi)容寫得不錯的話,可以把它分享出去給更多人看到。


文章標題:如何實現(xiàn)SpringBoot2.x集成JPA快速開發(fā)
鏈接URL:http://weahome.cn/article/jppsep.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部