gpt4 book ai didi

java - Hibernate 一对多约束违反异常

转载 作者:行者123 更新时间:2023-11-29 02:59:56 25 4
gpt4 key购买 nike

您好,我正在尝试进行一对多插入,但我遇到了问题。我有两个表:

CREATE TABLE users_app (
user_id int UNSIGNED NOT NULL AUTO_INCREMENT,
user_number varchar(45) NOT NULL default '0',
user_password varchar(45) NOT NULL default '0',
os int(1) unsigned NOT NULL,
token varchar(500) NOT NULL,
PRIMARY KEY (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8;

CREATE TABLE user_app_devices(
id int AUTO_INCREMENT PRIMARY KEY,
user_id int UNSIGNED NULL, // Here it can accept null values
device_name varchar(45) NOT NULL,
FOREIGN KEY (user_id) REFERENCES users_app (user_id)
)ENGINE=InnoDB CHARSET=utf8;

我的类(class):

@Entity
@Table(name="user_app_devices")
public class UserAppDevice implements Serializable {
private static final long serialVersionUID = 1L;

@Id
@Column(name="id")
@GeneratedValue(strategy = IDENTITY)
private int id;


@Column(name="device_name")
private String deviceName;

//bi-directional many-to-one association to UsersApp
@ManyToOne
@JoinColumn(name="user_id",insertable=false,updatable=false) // Ignoring this column using JSON IGNORE
@JsonIgnore
private UsersApp usersApp;


@Column(name="user_id")
private int userId;

public UserAppDevice() {
}

public int getId() {
return this.id;
}

public void setId(int id) {
this.id = id;
}

public int getUserId() {
return this.id;
}

public void setUserId(int id) {
this.id = id;
}

public String getDeviceName() {
return this.deviceName;
}

public void setDeviceName(String deviceName) {
this.deviceName = deviceName;
}

public UsersApp getUsersApp() {
return this.usersApp;
}

public void setUsersApp(UsersApp usersApp) {
this.usersApp = usersApp;
}

}

@Entity
@Table(name="users_app")
public class UsersApp implements Serializable {
private static final long serialVersionUID = 1L;

@Id
@GeneratedValue(strategy = IDENTITY)
@Column(name="user_id")
private int userId;

private int os;

private String token;

@Column(name="user_number")
private String userNumber;

@Column(name="user_password")
private String userPassword;

//bi-directional many-to-one association to UserAppDevice
@OneToMany(mappedBy="usersApp")
private List<UserAppDevice> userAppDevices;

public UsersApp() {
}

public int getUserId() {
return this.userId;
}

public void setUserId(int userId) {
this.userId = userId;
}

public int getOs() {
return this.os;
}

public void setOs(int os) {
this.os = os;
}

public String getToken() {
return this.token;
}

public void setToken(String token) {
this.token = token;
}

public String getUserNumber() {
return this.userNumber;
}

public void setUserNumber(String userNumber) {
this.userNumber = userNumber;
}

public String getUserPassword() {
return this.userPassword;
}

public void setUserPassword(String userPassword) {
this.userPassword = userPassword;
}

public List<UserAppDevice> getUserAppDevices() {
return this.userAppDevices;
}

public void setUserAppDevices(List<UserAppDevice> userAppDevices) {
this.userAppDevices = userAppDevices;
}

public UsersApp(int os, String token, String userNumber, String userPassword) {
this.os = os;
this.token = token;
this.userNumber = userNumber;
this.userPassword = userPassword;
}

在“user_app_devices”表中,“user_id”列在 MySql 中接受 Null 值。但是使用 Hibernate 它不接受值,给出以下错误消息是:

[WARN] org.hibernate.engine.jdbc.spi.SqlExceptionHelper - SQL Error: 1452, SQLState: 23000
[ERROR] org.hibernate.engine.jdbc.spi.SqlExceptionHelper - Cannot add or update a child row: a foreign key constraint fails (`user_app_devices`, CONSTRAINT `user_id` FOREIGN KEY (`user_id`) REFERENCES `user_app` (`user_id`))
[ERROR] com.jaguar.nbfcapp.aop.logging.LoggingAspect - Exception in com.example.web.rest.userResource.create() with cause = org.hibernate.exception.ConstraintViolationException: could not execute statement
org.springframework.dao.DataIntegrityViolationException: could not execute statement; SQL [n/a]; constraint [null]; nested exception is org.hibernate.exception.ConstraintViolationException: could not execute

最佳答案

那是因为您插入的设备的 user_id 在 users_app 表中不存在。顺便说一句,你不应该在设备实体中有这个 user_id 字段,因为你有一个 ManyToOne 关联。只需使用

@ManyToOne
@JoinColumn(name="user_id")
@JsonIgnore
private UsersApp usersApp;

关于java - Hibernate 一对多约束违反异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25321720/

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