`
DDT_123456
  • 浏览: 16274 次
社区版块
存档分类
最新评论

@PathParam

 
阅读更多

@PathParam 的声明允许你在URI路径中去映射你的方法将使用的参数。

 

 


  1. @Path("/library")  
  2. public class Library {  
  3.   
  4.    @GET  
  5.    @Path("/book/{isbn}")  
  6.    public String getBook(@PathParam("isbn") String id) {  
  7.       // search my database and get a string representation and return it  
  8.    }  
  9. }  

 

(很简单,当你发出get请求 /book/152-963参数152-963就在isbn中存储着,然后交给变量id,这样你的方法就算是成功的接收了该参数)

这将允许你在uri中内嵌一个变量标识符。在上边的例子中,参数isbn被用来传递book的信息。你所嵌入的数据类型可以是任何元数据类型,例如String,具有String参数的构造函

数的一个类对象,或者a static valueOf method that takes a String as a parameter。例如,假设ISBN是一个对象,我们可以


  1. @GET  
  2. @Path("/book/{isbn}")  
  3. public String getBook(@PathParam("isbn") ISBN id) {...}  
  4.   
  5.   
  6. public class ISBN {  
  7.    public ISBN(String str) {...}  
  8. }  

或者是一个public方法String构造,包含一个valueOf 方法


 


  1. <span style="font-size:16px;">  public class ISBN {  
  2.        
  3.      public static ISBN valueOf(String isbn) {...}  
  4.   }</span>  

 

(运行中应该能够自动调用类的valueOf方法进行转换,对java不是很熟悉,我想大概应该是这样)


 

5.1. @PathParam深入 以及正则表达式


 

下边是一些更复杂的应用,这些在前边的章节并没有讨论

你可以指定一个或者多个参数用以内嵌到你的uri中,下边是一些例子

 

1.@Path("/aaa{param}bbb")

2.@Path("/{name}-{zip}")

3.@Path("/foo{name}-{zip}bar")


那么,路径 "/aaa111bbb" 将会匹配#1. "/bill-02115"将会匹配 #2. 路径"foobill-02115bar" 将会匹配 #3.

之前,我们已经讨论过如何在@Path中使用正则表达式

 

  1. @GET  
  2. @Path("/aaa{param:b+}/{many:.*}/stuff")  
  3. public StringgetIt(@PathParam("param") String bs, @PathParam("many")String many) {...}  

 

在如下的请求中,我们可以了解到“param”以及“many”值是多少

 

Request

param

many

GET /aaabb/some/stuff

bb

some

GET /aaab/a/lot/of/stuff

b

a/lot/of


 

 

5.2@PathParam 和 PathSegment

Thespecification has a very simple abstraction for examining a fragment of the URIpath being invoked on javax.ws.rs.core.PathSegment:


  1. public interface PathSegment {  
  2.   
  3.     /** 
  4.      * Get the path segment. 
  5.      * <p> 
  6.      * @return the path segment 
  7.      */  
  8.     String getPath();  
  9.     /** 
  10.      * Get a map of the matrix parameters associated with the path segment 
  11.      * @return the map of matrix parameters 
  12.      */  
  13.     MultivaluedMap<String, String> getMatrixParameters();  
  14.       
  15. }  

你可以使用resteasy注入一个PathSegment而不是用一个值


  1. @GET  
  2. @Path("/book/{id}")  
  3. public String getBook(@PathParam("id") PathSegment id) {...}  

当你使用matrix parameters传递诸多参数时,浙江爱那个非常有用。你可以将任意个name和value的键值对潜入到uri path segment中。PathSegment对象将会负责去获取这些参数。

你也可以看一下MatrixParam(后边会讲到)

一个matrix parameter的例子是

 

GEThttp://host.com/library/book;name=EJB 3.0;author=Bill Burke

分享到:
评论

相关推荐

    WebSocket区分不同客户端两种方法(HttpSession和@PathParam)

    本文将详细探讨两种主要的方法——利用`HttpSession`和`@PathParam`来区分不同的WebSocket客户端。 #### 二、使用`HttpSession`识别不同客户端 ##### 1. 理论基础 `HttpSession`是Java Servlet API中提供的一种...

    @PathParam和@QueryParam区别简析

    @PathParam和@QueryParam区别简析 @PathParam和@QueryParam是Java中用于处理URL参数的两个注解,它们之间有着明显的区别。本文将通过实例代码和详细的解释,帮助读者理解@PathParam和@QueryParam的区别和使用场景。...

    RESTfulPOJO:演示POJO作为资源和@ QueryParam,@ FormParam,@ PathParam

    首先,让我们了解一下`@QueryParam`、`@FormParam`和`@PathParam`这三种注解的作用: 1. **@QueryParam**: 这个注解用于从URL查询字符串中获取参数。例如,当访问`http://example.com/user?id=123`时,`@QueryParam...

    java rest简单实例,新手入门

    public User getUser(@PathParam("userId") String userId) { // 获取用户逻辑 } @POST public Response createUser(User user) { // 创建用户逻辑 return Response.status(201).build(); // 返回201状态码...

    使用Java创建RESTful Web Service

    - `@PathParam`:从URL中提取参数,如`@PathParam("id") int userId`。 - `@QueryParam`:从查询字符串中提取参数,如`@QueryParam("name") String userName`。 - `@HeaderParam` 和 `@CookieParam`:分别从HTTP...

    Netty-Resteasy-Spring

    @PathParam,@QueryParam,@HeaderParam,@CookieParam,@MatrixParam,@FormParam,分别标注方法的参数来自于HTTP请求的不同位置,例如@PathParam来自于URL的路径,@QueryParam来自于URL的查询参数,@HeaderParam...

    jax-rs开发实例(bookkeeping)

    public void updateRecord(@PathParam("id") String id, AccountingRecord record) { // 更新指定ID的会计记录 } @DELETE @Path("/{id}") public void deleteRecord(@PathParam("id") String id) { // 删除...

    JAX-RS注解及使用方法

    public String getHelloWorld(@PathParam("username") String username) { return "Hello, " + username + "!"; } } 在上面的例子中,@PathParam 注解用于抽取 URI 路径中的 username 参数。 @QueryParam 注解 ...

    RESTEasy @path 与正则表达式映射

    `@PathParam("id")` 注解用于从路径中提取匹配的值,并将其作为参数传递给 `getItem` 方法。 理解 RESTEasy 的正则表达式映射机制需要了解以下几个关键点: 1. **正则表达式语法**:RESTEasy 支持 Java 正则表达式...

    jira-plugins-jsincluder

    描述 包括特定页面的指定JS脚本。 页数 配置脚本 /secure/JsIncluderScriptsConfigurationAction!default.jspa REST API GET 公共响应getScripts() ... 公共响应getScript(@... 公共响应getCode(@PathParam(“ scri

    rest接口实例

    public void updateUser(@PathParam("id") String userId, User updatedUser) { // 更新用户信息 } @DELETE @Path("/{id}") public void deleteUser(@PathParam("id") String userId) { // 删除用户 } } ``...

    RESTful最佳实践之基于 jersey 的增删改查

    public Response updateUser(@PathParam("userId") Long id, User updatedUser) { // 实现更新用户信息的逻辑 } @DELETE @Path("/{userId}") public Response deleteUser(@PathParam("userId") Long id) { /...

    BOS技术整理-05

    条件中 @PathParam 适用于@path上标识参数类型 客户端需要使用type 条件中 @QueryParam 适用于@path上标识不参数类型 编写服务接口的实现类 实现服务接口方法 web.xml中配置CXF服务 其中配置了CXF的访问路径 ...

    RestFul Reference Guide

    例如,一个资源可能需要根据ID获取某个实体,此时可以在方法参数前加上`@PathParam("id") String id`,其中`"id"`对应URL中的实际路径参数名。 - **`@PathParam`和`PathSegment`**:在某些情况下,可能需要访问路径...

    shine05-jersey-rest-server-master_java_

    public User getUser(@PathParam("id") int userId) { // 从数据库获取用户并返回 } @POST public Response createUser(User user) { // 创建新用户并返回响应 } } ``` 三、Jersey配置与启动 创建一个...

    三步轻松实现java restful web services

    public User getUser(@PathParam("id") String userId) { // 实现获取用户逻辑 } } ``` 第三步:实现与部署 1. 创建服务:在上述UserService类中,我们需要实现具体业务逻辑。例如,`getUser`方法可能从数据库中...

    JAX-RS cxf web服务 rest简单增删改查 集成spring webService

    public void updateUser(@PathParam("id") Long id, User user) { // 更新用户信息 } ``` - **删除(Delete)**: 使用`@DELETE`方法删除资源。例如: ```java @DELETE @Path("/{id}") public void delete...

    JAXRS.:REST式Web服务API中新增的和值得关注的功能.ppt

    例如,`@PathParam`用于从URI模板中提取值,`@QueryParam`用于获取查询参数,而`@CookieParam`则用于读取cookie值。 JAX-RS的这些增强使得开发者能够更便捷地构建RESTful服务,同时保持代码的简洁性和可维护性。...

    Resteasy JAX-RS 3.0.6-all.zip最新官方zip包

    此外,`@QueryParam`、`@PathParam`、`@HeaderParam`和`@CookieParam`等注解允许从请求中提取参数。例如,`@PathParam("userId")`可以从URL路径中获取参数值。 在Resteasy中,还支持自定义消息提供者,这些提供者...

Global site tag (gtag.js) - Google Analytics