简体   繁体   中英

How do I send a POST request using Postman for a composite key

How do I send a POST request using Postman for a composite key? my composite key is:"favoritePK" which contains "id_ad" and "id_customer". i need your help

I think there is no problem in your code. Your entity must contain both the fields id_ad, id_customer. Just send any request with both fields like:

{
    id_ad: 1,
    id_customer:2,
    "name": "Someone Singh",
    "bio": "Testing",
    "dob": "1998-02-01"
}

And at the receiving end use @RequestBody with entity.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM