溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

springboot整合JPA過(guò)程解析

發(fā)布時(shí)間:2020-10-12 22:37:48 來(lái)源:腳本之家 閱讀:175 作者:西西嘛呦 欄目:編程語(yǔ)言

這篇文章主要介紹了springboot整合JPA過(guò)程解析,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下

springboot整合JPA過(guò)程解析

springboot整合JPA過(guò)程解析

接下來(lái)具體看看是怎么弄的。

1、新建一個(gè)springboot項(xiàng)目,選擇web、data jdbc、data jpa、mysql driver。

2、建立以下目錄及結(jié)構(gòu):

springboot整合JPA過(guò)程解析

pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.2.4.RELEASE</version>
    <relativePath/> <!-- lookup parent from repository -->
  </parent>
  <groupId>com.gong</groupId>
  <artifactId>springbootjpa</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <name>springbootjpa</name>
  <description>Demo project for Spring Boot</description>

  <properties>
    <java.version>1.8</java.version>
  </properties>

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

    <dependency>
      <groupId>mysql</groupId>
      <artifactId>mysql-connector-java</artifactId>
      <version>5.1.41</version>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-test</artifactId>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <groupId>org.junit.vintage</groupId>
          <artifactId>junit-vintage-engine</artifactId>
        </exclusion>
      </exclusions>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-maven-plugin</artifactId>
      </plugin>
    </plugins>
  </build>

</project>

3、在application.yml中配置連接數(shù)據(jù)庫(kù)和jpa相關(guān)配置

spring:
 datasource:
  url: jdbc:mysql://192.168.124.22:3306/jpa
  username: root
  password: 123456
  driver-class-name: com.mysql.jdbc.Driver
 jpa:
  hibernate:
   #更新或者創(chuàng)建數(shù)據(jù)表結(jié)構(gòu)
   ddl-auto: update
  #控制臺(tái)顯示SQL
  show-sql: true

4、新建一個(gè)entity包,新建實(shí)體類(lèi)User.java

package com.gong.springbootjpa.entity;


import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

import javax.persistence.*;

//使用JPA注解配置映射關(guān)系
@Entity //告訴JPA這是一個(gè)實(shí)體類(lèi)(和數(shù)據(jù)表映射的類(lèi))
@Table(name = "tbl_user") //@Table來(lái)指定和哪個(gè)數(shù)據(jù)表對(duì)應(yīng);如果省略默認(rèn)表名就是user;
@JsonIgnoreProperties(value = {"hibernateLazyInitializer","handler"})
public class User {

  @Id //這是一個(gè)主鍵
  @GeneratedValue(strategy = GenerationType.IDENTITY)//自增主鍵
  private Integer id;

  @Column(name = "last_name",length = 50) //這是和數(shù)據(jù)表對(duì)應(yīng)的一個(gè)列
  private String lastName;
  @Column //省略默認(rèn)列名就是屬性名
  private String email;

  public Integer getId() {
    return id;
  }

  public void setId(Integer id) {
    this.id = id;
  }

  public String getLastName() {
    return lastName;
  }

  public void setLastName(String lastName) {
    this.lastName = lastName;
  }

  public String getEmail() {
    return email;
  }

  public void setEmail(String email) {
    this.email = email;
  }
}

5、新建一個(gè)repository包,新建一個(gè)UserRepository.java

package com.gong.springbootjpa.repository;

import com.gong.springbootjpa.entity.User;
import org.springframework.data.jpa.repository.JpaRepository;

//繼承JpaRepository來(lái)完成對(duì)數(shù)據(jù)庫(kù)的操作,在JdbcRepository中指定實(shí)體類(lèi),數(shù)據(jù)庫(kù)中主鍵對(duì)應(yīng)的java類(lèi)型
public interface UserRepository extends JpaRepository<User,Integer> {
}

6、新建一個(gè)controller包,新建一個(gè)UserController.java

經(jīng)過(guò)上述配置之后,我們就可以直接利用UserRepository中的一些方法進(jìn)行數(shù)據(jù)庫(kù)的操作啦,是不是很方便。

package com.gong.springbootjpa.controller;

import com.gong.springbootjpa.entity.User;
import com.gong.springbootjpa.repository.UserRepository;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class UserController {

  @Autowired
  UserRepository userRepository;

  @GetMapping("/user/{id}")
  public User getUser(@PathVariable("id") Integer id){
    User user = userRepository.getOne(id);
    return user;
  }

  @GetMapping("/user")
  public User insertUser(User user){
    User save = userRepository.save(user);
    return save;
  }

}

7、啟動(dòng)服務(wù)器

插入一條數(shù)據(jù):

springboot整合JPA過(guò)程解析

查詢(xún)一條數(shù)據(jù):

springboot整合JPA過(guò)程解析

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI