We are using REST call Webservices in our Project for all the calls made from User Interface
Currently for every method the signature is configured in this way
public class SaveNewAddressLabelService {
@GET
@Consumes("application/text")
@Produces("application/json")
Means even if the Method performs a SELECT ,INSERT , UPDATE ,DELETE Operation it was annotated using GET .
Everything works fine ,could you please let me know will it make any difference if i use appropiate Method like POST , PUT , GET , DELETE