打开APP
userphoto
未登录

开通VIP,畅享免费电子书等14项超值服

开通VIP
@QueryParam跟@PathParam比较

来源:http://jackyrong.iteye.com/blog/1128364

1 先来看@queryparam
   先看例子:
 

Java代码  
  1. Path("/users")  
  2. public class UserService {  
  3.    
  4.     @GET  
  5.     @Path("/query")  
  6.     public Response getUsers(  
  7.         @QueryParam("from"int from,  
  8.         @QueryParam("to"int to,  
  9.         @QueryParam("orderBy") List<String> orderBy) {  
  10.    
  11.         return Response  
  12.            .status(200)  
  13.            .entity("getUsers is called, from : " + from + ", to : " + to  
  14.             + ", orderBy" + orderBy.toString()).build();  
  15.    
  16.     }  
  17.    
  18. }  


   URL输入为:users/query?from=100&to=200&orderBy=age&orderBy=name
  此时,输出为:
getUsers is called, from : 100, to : 200, orderBy[age, name]
   要注意的是,跟@pathparam不同,@queryparam
中,指定的是URL中的参数是以键值对的形式出现的,而在程序中
@QueryParam("from") int from则读出URL中from的值,
而@pathparem中,URL中只出现参数的值,不出现键值对,比如:
“/users/2011/06/30”

则:
 

Java代码  
  1. @GET  
  2.     @Path("{year}/{month}/{day}")  
  3.     public Response getUserHistory(  
  4.             @PathParam("year"int year,  
  5.             @PathParam("month"int month,   
  6.             @PathParam("day"int day) {  
  7.    
  8.        String date = year + "/" + month + "/" + day;  
  9.    
  10.        return Response.status(200)  
  11.         .entity("getUserHistory is called, year/month/day : " + date)  
  12.         .build();  
  13.    
  14.     }  


输出为:
getUserHistory is called, year/month/day : 2011/6/30

2 以动态的方式获得:
  

Java代码  
  1. @Path("/users")  
  2. public class UserService {  
  3.    
  4.     @GET  
  5.     @Path("/query")  
  6.     public Response getUsers(@Context UriInfo info) {  
  7.    
  8.         String from = info.getQueryParameters().getFirst("from");  
  9.         String to = info.getQueryParameters().getFirst("to");  
  10.         List<String> orderBy = info.getQueryParameters().get("orderBy");  
  11.    
  12.         return Response  
  13.            .status(200)  
  14.            .entity("getUsers is called, from : " + from + ", to : " + to  
  15.             + ", orderBy" + orderBy.toString()).build();  
  16.    
  17.     }  
  18.    



URL;users/query?from=100&to=200&orderBy=age&orderBy=name
输出为:
getUsers is called, from : 100, to : 200, orderBy[age, name]
注意这里把orderby后的两个参数读入为LIST处理了.


3 @DefaultValue,默认值

  例子:
 

Java代码  
  1. @Path("/users")  
  2. public class UserService {  
  3.    
  4.     @GET  
  5.     @Path("/query")  
  6.     public Response getUsers(  
  7.         @DefaultValue("1000"@QueryParam("from"int from,  
  8.         @DefaultValue("999")@QueryParam("to"int to,  
  9.         @DefaultValue("name"@QueryParam("orderBy") List<String> orderBy) {  
  10.    
  11.         return Response  
  12.            .status(200)  
  13.            .entity("getUsers is called, from : " + from + ", to : " + to  
  14.             + ", orderBy" + orderBy.toString()).build();  
  15.    
  16.     }  



URL:users/query
输出:getUsers is called, from : 1000, to : 999, orderBy[name]

本站仅提供存储服务,所有内容均由用户发布,如发现有害或侵权内容,请点击举报
打开APP,阅读全文并永久保存 查看更多类似文章
猜你喜欢
类似文章
【热】打开小程序,算一算2024你的财运
Jersey中@PathParam和@QueryParam的区别
JSR311-jax-rs
RestEasy+用户指南----第5章.@PathParam
CXF Rest Server
netbeans6.8与 glassfishV3体验Jee6之四rest
C# 3.0 入门系列
更多类似文章 >>
生活服务
热点新闻
分享 收藏 导长图 关注 下载文章
绑定账号成功
后续可登录账号畅享VIP特权!
如果VIP功能使用有故障,
可点击这里联系客服!

联系客服