我有一个客户对象,在客户对象里面我有一个包含用户名和密码的登录对象。当我做POST时,请求工作正常但是当我尝试执行PUT请求时它失败了。它失败了,因为它在用户名上显示了Duplicate条目。
我希望能够更新客户详细信息,而无需更改用户名。我怎样才能做到这一点。
这是我的代码:
UserLogin实体:
@Entity
@Table(name = "Customer",
uniqueConstraints =
{
@UniqueConstraint(columnNames = "email"),
@UniqueConstraint(columnNames = "id"),
@UniqueConstraint(columnNames = "phoneNumber")
}
)
public class Customer implements Serializable {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private int customerNumber;
@OneToOne(cascade= CascadeType.ALL)
@JoinColumn(name = "loginCredentialsID")
private UserLogin userlogin;
private String phoneNumber;
private String email;
private String physicalAddress;
private String country;
... getters and setters
}
UserLogin实体:
@Entity
@Table(name = "UserLogin",
uniqueConstraints =
{
@UniqueConstraint(columnNames = "userName")
})
public class UserLogin implements Serializable, UserDetails {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private int loginCredentialsID;
private String username;
private String password;
... getters and setters
}
CustomerService Class:
public Response updatCustomeretails(int id,Customer customer) {
customer.setCustomerNumber(id);
if( customer== null ){
throw new ResourceNotFoundException("Empty", "Missing Data");
}else {
customerRepository.save(customer);
return new Response(" Customer Updated Successfully","Thank you ");
}
答案 0 :(得分:1)
使用Sping数据JPA进行更新时,您应该使用在此行customerRepository.save(customer);
上保存时正确执行的保存。但是,当在PUT请求中将数据持久保存到数据库时,JPA使用实体映射中的键来更新正确的记录。
因此,在您的情况下,当JPA尝试保存新记录而不是更新现有记录时,您会收到该错误。您的意图是更新,但我怀疑您的密钥丢失或未正确定义,因此JPA尝试去保存新记录而不是更新。
因此,当您进行更新(PUT)时,请确保您传递的对象与您要更新的对象具有相同的密钥。