- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在我的 Spring Boot(使用 Postgresql DB)应用程序中在两个模型(car_model
和 car_picture_model
)之间建立了 OneToOne(单向)关系。启动并插入数据(来自 java 代码)后,我可以获得正确的关系信息:
id | make | car_image_id
1 | Ferrari | 2
而且我可以选择所有汽车和所有图像。 DBeaver 显示表和关系箭头。
但是在日志中我可以看到异常:
org.hibernate.tool.schema.spi.CommandAcceptanceException: Error executing DDL via JDBC Statement at org.hibernate.tool.schema.internal.exec.GenerationTargetToDatabase.accept(GenerationTargetToDatabase.java:67) ~[hibernate-core-5.2.17.Final.jar:5.2.17.Final] ... at java.lang.Thread.run(Thread.java:748) ~[na:1.8.0_181] Caused by: org.postgresql.util.PSQLException: ERROR: relation "car_model" does not exist at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2182) ~[postgresql-9.4-1206-jdbc42.jar:9.4]
完整日志:https://pastebin.com/ui1Cj99j
删除 name="cars"不会改变任何东西。
与添加带有 car_name 的 @Table 注解相同
汽车模型:
import javax.persistence.*;
@Entity(name = "cars")
public class CarModel {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private int id;
@Column
private String make;
@OneToOne
@JoinColumn(name = "car_image_id", unique = true)
private CarPictureModel carPictureModel;
// Getters and Setters
}
汽车图片模型:
import javax.persistence.*;
@Entity
public class CarPictureModel {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private int id;
@Column
private String fileName;
@Column
private String fileType;
@Lob
@Column
private byte[] data;
// for (bidirectional mapping)
// @OneToOne(mappedBy = "carPictureModel")
// private CarModel carModel;
// Getters and Setters
}
在 application.properties
中有:
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect
spring.jpa.hibernate.ddl-auto=create-drop
你能帮我告诉我这里缺少什么吗?
最佳答案
看起来您缺少@Table 注释。如果您的表名是 car_model,请在您的类定义之前使用 @Table(name = "car_model")。
CarPictureModel 也是如此。
@Entity(name = "cars")
@Table(name = "car_model")
公共(public)课 CarModel {
}
@实体
@Table(name = "car_picture_model")
公共(public)类 CarPictureModel {
}
关于java - 关系 OneToOne 的 PSQLException : relation "car_model" does not exist,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51951900/
我在我的 Spring Boot(使用 Postgresql DB)应用程序中在两个模型(car_model 和 car_picture_model)之间建立了 OneToOne(单向)关系。启动并插
我是一名优秀的程序员,十分优秀!