码迷,mamicode.com
首页 > 其他好文 > 详细

REST正则表达式的用法

时间:2015-01-16 11:20:13      阅读:717      评论:0      收藏:0      [点我收藏+]

标签:正则表达式   jax-rs   restful   jersey   

1:@Path上定义的参数,可以使用正则表达式


如:@Path("users/{username: [a-zA-Z][a-zA-Z_0-9]*}")

此处,如果用户输出的参数不匹配,就会报404(Not Found)错误。


2:顺序作用域

        /**
*顺序作用域<br>
* Http 方法: GET <br>
* API 路径: /rest/test/{begeinMonth:\\d+},{begeinYear:\\d+}-{endMonth:\\d+},{endYear:\\d+}<br>
* 方 法 名: test3 <br>
* 返回的MIME媒体类型:@Produces("application/json;charset=utf-8")<br>
* @return javax.ws.rs.core.Response
* @throws Throwable
*/
@GET
@Path("{begeinMonth:\\d+},{begeinYear:\\d+}-{endMonth:\\d+},{endYear:\\d+}")
@Produces("application/json;charset=utf-8")
public Response test3(@PathParam("begeinMonth") String begeinMonth,
@PathParam("begeinYear") String begeinYear,
@PathParam("endMonth") String endMonth,
@PathParam("endYear") String endYear) throws Throwable {
return Response.status(200).entity(begeinYear + "-"+endMonth+"至" + endYear+"-"+endMonth).build();
}

      //d+表示参数为数字,并且必须出现一次!

REST正则表达式的用法

标签:正则表达式   jax-rs   restful   jersey   

原文地址:http://blog.csdn.net/u013628152/article/details/42774661

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!