Need Help About @get @post @put @delete In Restful Webservice
I need your help and advice. This is my first project in jersey. I don't know much about this topic. I'm still learning. I created my school project. But I have some problems on th
Solution 1:
I just want to do simple methods get(just reading data),
post(update existing data), put(create new data), delete(delete specific data) these things
POST should be used to create resources and PUT should be used to update resources.
Your class already has webservice path /Movie/Description, so there is no need to repeat word Description in the methods.
Also, I would recommend keep path names in lower case e.g. /movie/description
Post a Comment for "Need Help About @get @post @put @delete In Restful Webservice"