作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Hibernate 生成奇怪的 DDL,用于配置串行列和 FK。示例(Book.author *-1 Authors.id):
@Entity
@Table(name = "books")
public class Book {
private Integer id;
private Author author;
@Id
@Column(name = "id", columnDefinition = "serial")
@GeneratedValue(strategy = GenerationType.IDENTITY)
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
@JoinColumn(name = "author", nullable = true)
@ManyToOne(optional = true, fetch = FetchType.LAZY)
public Author getAuthor() {
return author;
}
public void setAuthor(Author author) {
this.author = author;
}
}
@Entity
@Table(name = "authors")
public class Author {
private Integer id;
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
}
书籍表中列作者的结果 DDL:
ALTER TABLE books ADD COLUMN author integer;
ALTER TABLE books ALTER COLUMN author SET NOT NULL;
ALTER TABLE books ALTER COLUMN author SET DEFAULT nextval('authors_seq'::regclass);
它有奇怪的默认值,而且我也不能让它为空。是否可以在不为FK编写columnDefinition的情况下修复它?
最佳答案
我已将其报告为错误 https://hibernate.atlassian.net/browse/HHH-10647 。当前的解决方法是对 FK 列使用 columnDefinition:columnDefinition = "integer"
关于java - Hibernate 外键到串行列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36217309/
我是一名优秀的程序员,十分优秀!