SpringDataJpa⾃动⽣成表结构的⽅法⽰例
想在部署的时候随应⽤的启动⽽初始化数据脚本,这不就是Spring Data Jpa中的⾃动⽣成表结构,听起来特别简单,不就是配置Hibernate的ddl-auto嘛,有什么好说的,是个⼈都知道。当初我也是这样认为,实际操作了⼀把,虽然表是创建成功了,但是字段注释,字符集以及数据库引擎都不对,没想到在这些细节上翻车了。
毕竟开翻的车还要⾃⼰扶起来,于是在这记录⼀下。
注:本⽂中使⽤的Spring Data Jpa版本为2.1.4.RELEASE
以MySQL为例,我这边举个例⼦:
import com.fasterxml.jackson.annotation.*;
import org.hibernate.annotations.*;
import org.springframework.data.annotation.*;
import javax.persistence.*;
import javax.persistence.Entity;
import javax.persistence.Id;
import java.math.BigDecimal;
@Entity
@javax.persistence.Table(name = "basic_city")
@org.hibernate.annotations.Table(appliesTo = "basic_city", comment = "城市基本信息")
public class CityDO {
@Id
@GenericGenerator(name = "idGenerator", strategy = "uuid")
@GeneratedValue(generator = "idGenerator")
@Column(name = "CITY_ID", length = 32)
private String cityId;
spring framework版本
@Column(name = "CITY_NAME_CN", columnDefinition = "VARCHAR(255) NOT NULL COMMENT '名称(中⽂)'")
private String cityNameCN;
@Column(name = "CITY_NAME_EN", columnDefinition = "VARCHAR(255) NOT NULL COMMENT '名称(英⽂)'")
private String cityNameEN;
@Column(name = "LONGITUDE", precision = 10, scale = 7)
private BigDecimal longitude;
@Column(name = "LATITUDE", precision = 10, scale = 7)
private BigDecimal latitude;
@Column(name = "ELEVATION", precision = 5)
private Integer elevation;
@Column(name = "CITY_DESCRIPTION", length = 500)
private String cityDescription;
// 构造⽅法及get/set⽅法省略
}
@javax.persistence.Table 修改默认ORM规则,属性name设置表名;
@org.hibernate.annotations.Table 建表时的描述,属性comment修改表描述;
@Id 主键
@GenericGenerator 设置主键策略,这⾥使⽤了Hibernate的UUID来⽣成主键;
@GeneratedValue 设置主键值,属性generator关联主键策略的name;
@Column 修改默认ORM规则;
name设置表中字段名称,表字段和实体类属性相同,则该属性可不写;
unique设置该字段在表中是否唯⼀,默认false;
nullable是否可为空,默认true;
insertable表⽰insert操作时该字段是否响应写⼊,默认为true;
updatable表⽰update操作时该字段是否响应修改,默认为true;
columnDefinition是⾃定义字段,可以⽤这个属性来设置字段的注释;
table表⽰当映射多个表时,指定表的表中的字段,默认值为主表的表名;
length是长度,仅对varchar类型的字段⽣效,默认长度为255;
precision表⽰⼀共多少位;
scale表⽰⼩数部分占precision总位数的多少位,例⼦中两者共同使⽤来确保经纬度的精度;
接下来需要设置数据引擎和字符集,⽹上⼤把的继承MySQL5InnoDBDialect,但是这个类已经过期了,我们⽤MySQL5Dialect 来代替:
package fig;
import org.hibernate.dialect.MySQL5Dialect;
import org.springframework.stereotype.Component;
@Component
public class MySQL5TableType extends MySQL5Dialect {
@Override
public String getTableTypeString() {
return "ENGINE=InnoDB DEFAULT CHARSET=utf8";
}
}
然后在Spring Boot的配置⽂件中应⽤上⾯定义的MySQL5TableType ,使⽤spring.jpa.properties.hibernate.dialect配置:
spring:
datasource:
driver-class-name: sql.jdbc.Driver
url: jdbc:mysql://localhost:3306/techno?useUnicode=true&characterEncoding=utf8
username: root
password: root
jpa:
show-sql: true
hibernate:
ddl-auto: update
database-platform: org.hibernate.dialect.MySQL5InnoDBDialect
properties:
hibernate:
dialect: fig.MySQL5TableType
到此,Sprign Data Jpa⽣成表就完成了,应⽤就可以通过ApplicaitonRunner或者CommandLineRunner接⼝⼀键部署应⽤,省去初始化SQL等不必要的操作了,这两个接⼝的简单使⽤可以参考我的。
以上就是本⽂的全部内容,希望对⼤家的学习有所帮助,也希望⼤家多多⽀持。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。