我在JPA中使用Spring Data REST。我有一个User实体,它与另一个名为AccountStatus的多对一关系在一个单独的RDBMS表中建模。 JSON表示如下所示:
{
"id": "123"
"username": "user1",
"accountStatus": {
"id": "1",
"status": "Active"
}
}
用户实体中的关系是:
@ManyToOne(optional = false)
@JoinColumn(name = "account_state")
@Getter @Setter private AccountState accountState;
现在,我尝试使用/ users / 123上的PATCH请求和有效负载更改帐户状态:
{"accountState":{"id":0}}
但是我收到了一个错误:
"identifier of an instance of com.domain.account.AccountState was
altered from 1 to 0; nested exception is org.hibernate.HibernateException:
identifier of an instance of com.domain.account.AccountState was
altered from 1 to 0"
我还尝试使用@HandleBeforeSave / @ HandleBeforeLinkSave从存储库中获取新的AccountState,并替换user.accountStatus但没有成功。
我做错了什么?
答案 0 :(得分:9)
这取决于您是否有AccountState
的导出存储库。如果您这样做,可以使用PATCH
针对/users/{id}
:
{
"accountState": "http://localhost:8080/accountStates/2"
}
因此,您使用帐户状态的URI来引用要分配的资源