RESTful Web 服务 Jersey使用
简单的?RESTful Web 服务 ?Jersey编程用例 ? 附代码
?
资源:
?
POST?
?
PUT?
DELETE?
?
@DELETEpublic void deleteContact() {Contact c = ContactStore.getStore().remove(contact);if(c==null)throw new NotFoundException("No such Contact.");}?