Jersry接口规则

@ApiOperation(value = "/list/{pageNum}/{pageSize}/{language}", notes = "*******")
@Path("/list/{pageNum}/{pageSize}/{language}")
@GET
@Produces({Constant.APPLICATION_JSON_UTF8})
@Consumes({Constant.APPLICATION_JSON_UTF8})
public Response> list(@PathParam("pageNum") int pageNum, @PathParam("pageSize") int pageSize,
@QueryParam("language") String language) throws ResourceException {
@PathParam 参数为必输入的项目
@QueryParam 参数为可以输入也可以不输入的项目

Jersry接口规则_第1张图片
Paste_Image.png

你可能感兴趣的:(Jersry接口规则)