博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Jersey 写restful接口时QueryParam ,FormParam 等的区别
阅读量:6081 次
发布时间:2019-06-20

本文共 1900 字,大约阅读时间需要 6 分钟。

今天用jersey写接口,发现有一个post方法中没有得到参数,查了半天发现自己一不小心将@formparam写成了@queryparam,真是一个悲伤的故事。在这里把几个参数类型整理了一下放出来。 


1. 

@PathParam 

使用@PathParam可以获取URI中指定规则的参数,举个例子: 

类中@Path("/user") 

@GET 

@Path("{username"}) 

@Produces(MediaType.APPLICATION_JSON) 

public User getUser(@PathParam("username") String userName) { 

    ... 


当浏览器请求http://localhost/user/jack时,userName值为jack。 

注意,这里的username并不是说Key是username, value是jack而是说/usr/后面跟着的东西就是username,这里username只是个变量 



2. 

@QueryParam 

@QueryParam用于获取GET请求中的查询参数,如: 

@GET 

@Path("/user") 

@Produces("text/plain") 

public User getUser(@QueryParam("name") String name, 

                    @QueryParam("age") int age) { 

    ... 


当浏览器请求http://host:port/user?name=rose&age=25时,name值为rose,age值为25。如果需要为参数设置默认值,可以使用 


3. 

@DefaultValue,如: 

@GET 

@Path("/user") 

@Produces("text/plain") 

public User getUser(@QueryParam("name") String name, 

                    @DefaultValue("26") @QueryParam("age") int age) { 

    ... 


当浏览器请求http://host:port/user?name=rose时,name值为rose,age值为26。 


4. 

@FormParam 

@FormParam,顾名思义,从POST请求的表单参数中获取数据。如: 

@POST 

@Consumes("application/x-www-form-urlencoded") 

publicvoid post(@FormParam("name") String name) { 

    // Store the message 


相信使用过html进行post提交的人对表单一定不陌生,可以想象成这就是在模拟html中表单的请求。 

5. 

使用Map 

在一个大型的server中,因为参数的多变,参数结构的调整都会因为以上几种方式而遇到问题,这时可以考虑使用@Context 注释,并获取UriInfo实例,如下: 

@GET 

public String get(@Context UriInfo ui) { 

    MultivaluedMap<String, String> queryParams = ui.getQueryParameters(); 

    MultivaluedMap<String, String> pathParams = ui.getPathParameters(); 


我觉得,可以认为map是上面几种情况的超集,因为它能够替代以上任意一种。map就是context 

同样还可以通过@Context 注释获取ServletConfig、ServletContext、HttpServletRequest、HttpServletResponse和HttpHeaders等,如下: 


@Path("/") 

publicclass Resource { 


    @Context 

    HttpServletRequest req; 


    @Context 

    ServletConfig servletConfig; 


    @Context 

    ServletContext servletContext; 


    @GET 

    public String get(@Context HttpHeaders hh) { 

        MultivaluedMap<String, String> headerParams = hh.getRequestHeaders(); 

        Map<String, Cookie> pathParams = hh.getCookies(); 

    } 

转载地址:http://hukwa.baihongyu.com/

你可能感兴趣的文章
分享一些 Kafka 消费数据的小经验
查看>>
我的友情链接
查看>>
Windows Phone 7开发一月谈(10)
查看>>
jquery之index()
查看>>
vmware:Cannot open the disk 'XXX' or one of the snapshot disks it depends on.
查看>>
Galgames Hgames下载中心,无毒
查看>>
SGE中将指定的job挂起
查看>>
我的友情链接
查看>>
Nagios3.2.0在CentOS5.3上安装和配置
查看>>
软件包管理 之 如何编译安装源码包软件
查看>>
ios 图片自适应屏幕 截取
查看>>
函数的重载
查看>>
提升JavaScript的加载与执行效率
查看>>
js遍历
查看>>
简明 Python 教程
查看>>
在mac下启动postgresql
查看>>
家人北京游
查看>>
EJBCA 6 配置使用
查看>>
Nagios自定义报警时间
查看>>
有过故事的那些人
查看>>