溫馨提示×

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

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

Springboot怎么引入hibernate配置自動(dòng)建表并進(jìn)行增刪改查操作

發(fā)布時(shí)間:2022-09-22 09:48:18 來(lái)源:億速云 閱讀:177 作者:iii 欄目:開(kāi)發(fā)技術(shù)

這篇文章主要介紹“Springboot怎么引入hibernate配置自動(dòng)建表并進(jìn)行增刪改查操作”的相關(guān)知識(shí),小編通過(guò)實(shí)際案例向大家展示操作過(guò)程,操作方法簡(jiǎn)單快捷,實(shí)用性強(qiáng),希望這篇“Springboot怎么引入hibernate配置自動(dòng)建表并進(jìn)行增刪改查操作”文章能幫助大家解決問(wèn)題。

一、引入依賴

<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

自動(dòng)建表的配置是ddl-auto,有多個(gè)屬性可選
# 1. none 永遠(yuǎn)以數(shù)據(jù)表字段為準(zhǔn),不做任何修改
# 2. validate 加載hibernate時(shí),驗(yàn)證創(chuàng)建數(shù)據(jù)庫(kù)表結(jié)構(gòu),會(huì)和數(shù)據(jù)庫(kù)中的表進(jìn)行比較,不會(huì)創(chuàng)建新表,但是會(huì)插入新值
# 3. create 每次加載hibernate,重新創(chuàng)建數(shù)據(jù)庫(kù)表結(jié)構(gòu),這就是導(dǎo)致數(shù)據(jù)庫(kù)表數(shù)據(jù)丟失的原因
# 4. create-drop 加載hibernate時(shí)創(chuàng)建,退出是刪除表結(jié)構(gòu)
# 5. update 加載hibernate自動(dòng)更新數(shù)據(jù)庫(kù)結(jié)構(gòu)(最常用的一個(gè))

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語(yǔ)句
    show-sql: true

三、寫(xiě)代碼

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

2、實(shí)體類(lèi)

@Id代表這是主鍵,@GeneratedValue和@GenericGenerator設(shè)置主鍵策略是UUID
@Column可以不寫(xiě),name是數(shù)據(jù)庫(kù)中的字段名,如果數(shù)據(jù)庫(kù)中要新建的對(duì)應(yīng)字段也叫name,可以不寫(xiě),columnDefinition指定字段在數(shù)據(jù)庫(kù)中的類(lèi)型、長(zhǎng)度、注釋等

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)的實(shí)體類(lèi)注解
@Entity
//表名
@Table(name = "people")
//Lombok
@Data
public class People {
    
    //Id代表這是主鍵,GeneratedValue和GenericGenerator設(shè)置主鍵策略是UUID
    @Id
    @GeneratedValue(generator = "id")
    @GenericGenerator(name = "id", strategy = "uuid.hex")
    private String id;

    //Column可以不寫(xiě),name是數(shù)據(jù)庫(kù)中的字段名,如果數(shù)據(jù)庫(kù)中要新建的對(duì)應(yīng)字段也叫name,可以不寫(xiě),columnDefinition指定字段在數(shù)據(jù)庫(kù)中的類(lèi)型、長(zhǎng)度、注釋等
    @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>尖括號(hào)里面填寫(xiě)的是實(shí)體類(lèi)和實(shí)體類(lèi)的主鍵數(shù)據(jù)類(lèi)型,PeopleMapper繼承JpaRepository以后,可以把PeopleMapper 注入到Service里,使用很多內(nèi)置方法

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自帶的方法,里面還有很多內(nèi)置方法
        peopleMapper.save(people);
        System.out.println(peopleMapper.findAll());
        return str;
    }
}

四、測(cè)試結(jié)果

1、表已建好

Springboot怎么引入hibernate配置自動(dòng)建表并進(jìn)行增刪改查操作

2、請(qǐng)求接口,打印SQL,插入和查詢數(shù)據(jù)

使用瀏覽器調(diào)用接口

Springboot怎么引入hibernate配置自動(dòng)建表并進(jìn)行增刪改查操作

控制臺(tái)打印出SQL語(yǔ)句,查詢出我們剛剛插入的一條數(shù)據(jù),主鍵為自動(dòng)生成的UUID

Springboot怎么引入hibernate配置自動(dòng)建表并進(jìn)行增刪改查操作

Springboot怎么引入hibernate配置自動(dòng)建表并進(jìn)行增刪改查操作

關(guān)于“Springboot怎么引入hibernate配置自動(dòng)建表并進(jìn)行增刪改查操作”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí),可以關(guān)注億速云行業(yè)資訊頻道,小編每天都會(huì)為大家更新不同的知識(shí)點(diǎn)。

向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