基于jersey搭建RESTful风格的WebService接口
注解说明
@Path,路径信息,表示映射出去的访问路径。
@Path("/myResource")
@Produces,用于限制post和get方法返回的参数类型,支持json、string、xml、html
@Produces({"application/xml", "application/json"})
@Consumes,用于限制输入的参数的类型,支持json
翻译
2017-09-21 19:51:44 ·
698 阅读 ·
0 评论