这篇文章主要介绍“SpringBoot+jpa配置怎么根据实体类自动创建表”,在日常操作中,相信很多人在SpringBoot+jpa配置怎么根据实体类自动创建表问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”SpringBoot+jpa配置怎么根据实体类自动创建表”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!
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
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-jpa</artifactId> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> </dependency>
import javax.persistence.*; import java.io.Serializable; import java.util.Objects; @Entity //声明实体类 public class User implements Serializable { @Id //声明了实体唯一标识对应的属性 @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方法 }
启动即可生成
包导的不对: import javax.persistence.*;
配置文件不对: spring.jpa.hibernate.ddl-auto=update
注解写的不对:不要忘记@Entity
…
还可能有一种原因:
Sprint的入口文件在子目录里了,应该比其他诸如service、dao、controller、entity高一级。
例如:service文件所在为com.demo.metaService,那么入口文件xxxApplication.java应该在com.demo下
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-jpa</artifactId> </dependency>
若有依赖 spring-data-jpa 则删掉,否则会出现找不到 bootstrap 之类的错误
<!-- <dependency>--> <!-- <groupId>org.springframework.data</groupId>--> <!-- <artifactId>spring-data-jpa</artifactId>--> <!-- <version>2.1.4.RELEASE</version>--> <!-- </dependency>-->
增加Jpa 自动生成表的配置
spring: jpa: ##配置自动建表:updata:没有表新建,有表更新操作,控制台显示建表语句 hibernate: ddl-auto: update show-sql: true
个人建议创建一个基础Entity,用于表中常用字段创建配合 mybatisplus,jackson,SnowFlake,lombok 等库,自行导入相关注解请自行了解
BaseEntry.java
@Data//省略setget方法 @MappedSuperclass //标注父类 @EntityListeners(AuditingEntityListener.class) //jpa数据监听 @JsonIgnoreProperties(value={"hibernateLazyInitializer","handler","fieldHandler"}) //忽略解析的字段 public abstract class BaseEntry implements Serializable{ private static final long serialVersionUID = 1L; @Id @TableId @ApiModelProperty(value = "唯一标识") private String id = String.valueOf(SnowFlakeUtil.getFlowIdInstance().nextId()); @ApiModelProperty(value = "创建者") @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 = "创建时间") 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 = "删除标志 默认0") @TableLogic private Integer delFlag = CommonConstant.STATUS_NORMAL; }
业务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 = "经销商") 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; }
到此,关于“SpringBoot+jpa配置怎么根据实体类自动创建表”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注亿速云网站,小编会继续努力为大家带来更多实用的文章!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。