我有父对象和嵌套对象。我可以获得嵌套列表,使用GET /parent/{parentId}/nested
但我不能成功发布/放置它。在 POST 结果中,我得到 HTTP 204,并且父对象有空的嵌套对象列表。
在日志中,我看到 Hibernate 没有在 DB 中插入任何内容。在调试期间,我看到用于反现实化的 Jackson Object Mapper 将“ org.springframework.hateoas.Resources<java.lang.Object>
”作为 JavaType。
这是我的 POST 的真实示例:
curl 'http://localhost:8000/api/users/402880e554b8f7960154b8f7adbc0000/orders/' -i -X POST -H 'Authorization: Basic OLOLO==' -H 'Accept: application/json' -H 'deviceCurrencyCode: USD' -H 'Content-Type: application/json; charset=UTF-8' -d '{"orderPrice": 0,"tax": 0,"shippingCost": 0,"credits": 0,"addresses": [{"firstName": "Figli","lastName": "Migli","zipCode": "5555","city": "Riga","country": "Tlmltr","phone": "7777","address": "Adddr"}],"status": "status"}'
我知道这是可能的POST /nested '{"parent":"/link/to/parent"}'
。但是,如果这是通过父对象获取嵌套对象的方法,为什么我不能以这种方式发布/放置/修补它们?我检查了,它是 RESTfull 的,而且似乎是。