Springboot引入hibernate配置自動建表並進行增刪改查操作

前言

有些業務比較復雜,比如我們需要新建10張表,每張表有10個字段,如果用手工來操作,肯定非常浪費時間,而且隨著代碼中對實體類的修改,還要同時修改數據庫表,有時候寫著寫著就忘瞭,代碼改瞭,數據庫沒改,這種問題使用 hibernate 的自動建表就好啦。

一、引入依賴

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
    <groupId>mysql</groupId>
    <artifactId>mysql-connector-java</artifactId>
    <scope>runtime</scope>
</dependency>

二、配置yml

自動建表的配置是ddl-auto,有多個屬性可選
# 1. none 永遠以數據表字段為準,不做任何修改
# 2. validate 加載hibernate時,驗證創建數據庫表結構,會和數據庫中的表進行比較,不會創建新表,但是會插入新值
# 3. create 每次加載hibernate,重新創建數據庫表結構,這就是導致數據庫表數據丟失的原因
# 4. create-drop 加載hibernate時創建,退出是刪除表結構
# 5. update 加載hibernate自動更新數據庫結構(最常用的一個)

server:
  port: 8081
spring:
  datasource:
    driver-class-name: com.mysql.cj.jdbc.Driver
    url: jdbc:mysql://127.0.0.1:3306/test?useSSL=false&useUnicode=true&characterEncoding=UTF-8&serverTimezone=Asia/Shanghai&rewriteBatchedStatements=true
    username: root
    password: root
  jpa:
    hibernate:
      ddl-auto: update
    # 打印SQL語句
    show-sql: true

三、寫代碼

1、新建數據庫(空數據庫即可,不要新建表)

2、實體類

@Id代表這是主鍵,@GeneratedValue和@GenericGenerator設置主鍵策略是UUID
@Column可以不寫,name是數據庫中的字段名,如果數據庫中要新建的對應字段也叫name,可以不寫,columnDefinition指定字段在數據庫中的類型、長度、註釋等

package com.xuyijie.test.entity;

import jakarta.persistence.*;
import lombok.Data;
import org.hibernate.annotations.GenericGenerator;

/**
 * @author 徐一傑
 * @date 2022/9/19 17:25
 * @description
 */
//JPA(Hibernate)的實體類註解
@Entity
//表名
@Table(name = "people")
//Lombok
@Data
public class People {
    
    //Id代表這是主鍵,GeneratedValue和GenericGenerator設置主鍵策略是UUID
    @Id
    @GeneratedValue(generator = "id")
    @GenericGenerator(name = "id", strategy = "uuid.hex")
    private String id;

    //Column可以不寫,name是數據庫中的字段名,如果數據庫中要新建的對應字段也叫name,可以不寫,columnDefinition指定字段在數據庫中的類型、長度、註釋等
    @Column(name = "name", columnDefinition="varchar(255) NOT NULL COMMENT '名字'")
    private String name;

    @Column(name = "sex", columnDefinition="varchar(2) NOT NULL COMMENT '性別'")
    private String sex;

    @Column(name = "age", columnDefinition="int")
    private Integer age;
}

3、Dao層

JpaRepository<People, String>尖括號裡面填寫的是實體類和實體類的主鍵數據類型,PeopleMapper繼承JpaRepository以後,可以把PeopleMapper 註入到Service裡,使用很多內置方法

package com.xuyijie.test.mapper;

import com.xuyijie.test.entity.People;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;

/**
 * @author 徐一傑
 * @date 2022/9/19 17:42
 * @description
 */
@Repository
public interface PeopleMapper extends JpaRepository<People, String> {
}

4、Controller

package com.xuyijie.test.controller;

import com.xuyijie.test.entity.People;
import com.xuyijie.test.mapper.PeopleMapper;
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.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

/**
 * @author 徐一傑
 * @date 2022/9/19 17:12
 * @description
 */
@RestController
@RequestMapping("/test")
public class Test {
    @Autowired
    private PeopleMapper peopleMapper;

    @GetMapping("/hello/{str}")
    public String Hello(@PathVariable String str){
        People people = new People();
        people.setName(str);
        people.setSex("男");
        // 這裡的save和findAll都是hibernate自帶的方法,裡面還有很多內置方法
        peopleMapper.save(people);
        System.out.println(peopleMapper.findAll());
        return str;
    }
}

四、測試結果

1、表已建好

2、請求接口,打印SQL,插入和查詢數據

使用瀏覽器調用接口

控制臺打印出SQL語句,查詢出我們剛剛插入的一條數據,主鍵為自動生成的UUID

到此這篇關於Springboot引入hibernate配置自動建表並進行增刪改查的文章就介紹到這瞭,更多相關Springboot hibernate增刪改查內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: