溫馨提示×

溫馨提示×

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

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

SpringBoot+jpa配置怎么根據(jù)實體類自動創(chuàng)建表

發(fā)布時間:2021-11-22 15:47:12 來源:億速云 閱讀:736 作者:iii 欄目:開發(fā)技術(shù)

這篇文章主要介紹“SpringBoot+jpa配置怎么根據(jù)實體類自動創(chuàng)建表”,在日常操作中,相信很多人在SpringBoot+jpa配置怎么根據(jù)實體類自動創(chuàng)建表問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”SpringBoot+jpa配置怎么根據(jù)實體類自動創(chuàng)建表”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!

jpa配置根據(jù)實體類自動創(chuàng)建表

1.配置文件application.properties

spring.datasource.url=jdbc:mysql://localhost:3306/bootTable?serverTimezone=UTC&useUnicode=true&characterEncoding=utf-8&useSSL=true
spring.datasource.username=root
spring.datasource.password=123456
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.jpa.database=mysql
spring.jpa.show-sql=true
spring.jpa.hibernate.ddl-auto=update
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL5Dialect

2.pom.xml引入包

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

3.編寫實體類

import javax.persistence.*;
import java.io.Serializable;
import java.util.Objects;
@Entity
//聲明實體類
public class User implements Serializable {
    @Id
    //聲明了實體唯一標(biāo)識對應(yīng)的屬性
    @GeneratedValue
    //自增
    private Integer id;
    @Column(nullable = false, unique = true, length = 32)
    //長度32,唯一索引,nullable表示true可以為空,false不可以
    //用來聲明實體屬性的表字段的定義
    private String userName;
    private String passWord;
    private String email;
    private String nickName;
    private String regTime;
    @Transient
    //不映射成列的字段
    private String desc;
    //省略get和set方法
}

4.運行項目

啟動即可生成

5.針對項目啟動以后數(shù)據(jù)庫并未生成數(shù)據(jù)庫表問題

包導(dǎo)的不對: import javax.persistence.*;

配置文件不對: spring.jpa.hibernate.ddl-auto=update

注解寫的不對:不要忘記@Entity

還可能有一種原因:

Sprint的入口文件在子目錄里了,應(yīng)該比其他諸如service、dao、controller、entity高一級。

例如:service文件所在為com.demo.metaService,那么入口文件xxxApplication.java應(yīng)該在com.demo下

jpa根據(jù)Entry自動生成表

1.加入依賴

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

若有依賴 spring-data-jpa 則刪掉,否則會出現(xiàn)找不到 bootstrap 之類的錯誤

<!--        <dependency>-->
<!--            <groupId>org.springframework.data</groupId>-->
<!--            <artifactId>spring-data-jpa</artifactId>-->
<!--            <version>2.1.4.RELEASE</version>-->
<!--        </dependency>-->

2.配置 application.yml

增加Jpa 自動生成表的配置

spring:
  jpa: ##配置自動建表:updata:沒有表新建,有表更新操作,控制臺顯示建表語句
    hibernate:
      ddl-auto: update
    show-sql: true

3. 創(chuàng)建Entity

個人建議創(chuàng)建一個基礎(chǔ)Entity,用于表中常用字段創(chuàng)建配合 mybatisplus,jackson,SnowFlake,lombok 等庫,自行導(dǎo)入相關(guān)注解請自行了解

BaseEntry.java

@Data//省略setget方法
@MappedSuperclass //標(biāo)注父類
@EntityListeners(AuditingEntityListener.class) //jpa數(shù)據(jù)監(jiān)聽
@JsonIgnoreProperties(value={"hibernateLazyInitializer","handler","fieldHandler"}) //忽略解析的字段
public abstract class BaseEntry implements Serializable{
    private static final long serialVersionUID = 1L;
    @Id
    @TableId
    @ApiModelProperty(value = "唯一標(biāo)識")
    private String id = String.valueOf(SnowFlakeUtil.getFlowIdInstance().nextId());
    @ApiModelProperty(value = "創(chuàng)建者")
    @CreatedBy
    private String createBy;
    @CreatedDate
    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @ApiModelProperty(value = "創(chuàng)建時間")
    private Date createTime;
    @ApiModelProperty(value = "更新者")
    @LastModifiedBy
    private String updateBy;
    @LastModifiedDate
    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @ApiModelProperty(value = "更新時間")
    private Date updateTime;
    @ApiModelProperty(value = "刪除標(biāo)志 默認(rèn)0")
    @TableLogic
    private Integer delFlag = CommonConstant.STATUS_NORMAL;
}

業(yè)務(wù)Entry ,僅做參考

/**
 * tb_bussiness_up_record實體類
 *
 * @author
 *
 */
@Data
@Entity
@Table(name = "tb_bussiness_up_record")
@TableName("tb_bussiness_up_record")
public class TbBussinessUpRecord  extends BaseEntry {
    private static final long serialVersionUID = 1L;
    @ApiModelProperty(value = "經(jīng)銷商")
    private String bussinessId;
    @ApiModelProperty(value = "審核時間")
    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private String auditTime;
}

到此,關(guān)于“SpringBoot+jpa配置怎么根據(jù)實體類自動創(chuàng)建表”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>

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

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

AI