gpt4 book ai didi

java - 关系 OneToOne 的 PSQLException : relation "car_model" does not exist

转载 作者:行者123 更新时间:2023-11-29 13:43:32 24 4
gpt4 key购买 nike

我在我的 Spring Boot(使用 Postgresql DB)应用程序中在两个模型(car_modelcar_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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com