java – Jersey是否支持美元符号JAX-RS的Path注释?

我希望能够访问以下其他网址:

> http://localhost:9998/helloworld
> http://localhost:9998/helloworld/ $count

第一个URL工作正常.我使用Jersey实现的JAX-RS在$count URL上遇到了麻烦.

这是资源的代码.

@Path("/helloworld")
public class HelloWorldResource {
    @GET
    @Produces("text/plain")
    public String getClichedMessage() {
        return "Hello World!";
    }

    @GET
    @Path("\\$count")
    @Produces("text/plain")
    public String getClichedMessage(
            @PathParam("\\$count") String count) {

        return "Hello count";
    }
}

我也在@Path和@PathParam中尝试了“$count”,但这也没有用.

注意:如果我从上面的所有代码删除美元符号,那么它适用于URL localhost:9998 / helloworld / count.但是我需要在URL中存在美元符号,因为这将是一个OData生成器应用程序.

最佳答案
@H_502_23@找到了答案.将美元符号放在角色类中就可以了.

@GET
@Path("{count : [$]count(/)?}")
@Produces("text/plain")
public String getClichedMessageCount(
        @PathParam("count") String count) {

    return "Hello count";
}

以上内容与以下网址相匹配.

> localhost:9998 / helloworld / $count
> localhost:9998 / helloworld / $count /
> localhost:9998 / helloworld / $count?$filter = blah
> localhost:9998 / helloworld / $count /?$filter = blah

相关文章

ArrayList简介:ArrayList 的底层是数组队列,相当于动态数组。与 Java 中的数组相比,它的容量能动态增...
一、进程与线程 进程:是代码在数据集合上的一次运行活动,是系统进行资源分配和调度的基本单位。 线程...
本文为博客园作者所写: 一寸HUI,个人博客地址:https://www.cnblogs.com/zsql/ 简单的一个类...
#############java面向对象详解#############1、面向对象基本概念2、类与对象3、类和对象的定义格式4、...
一、什么是异常? 异常就是有异于常态,和正常情况不一样,有错误出错。在java中,阻止当前方法或作用域...
Collection接口 Collection接口 Collection接口 Collection是最基本的集合接口,一个Collection代表一组...