以下 GET 由以下 uri 触发
/PathA/SomePathA
@Path("/PathA")
public class SubscriptionEntry
{
@Path("{PathA}")
public SomeType SomeMethod(@PathParam("parA") String userip)
{
//This is called!!! with /PathA/SomePathA
return new SomeResource(uriInfo,request,userip,httpreq);
}
}
SomeResource 是这样的
public class SomeResource
{
@GET
public Type AnotherMethod
{
.....
.....
}
@Path({"What is suppose to be here???? since this class has no name??}")
public MyType MyMethod()
{....
}
}
我的问题是我如何调整上面的类(路径中需要什么),以便 MyMethod 被 uris 触发
/PathA/SomePathA/Test
或者
/PathA/SomePathA/SomePathB/Test
我尝试做类似以下的事情,但它不起作用
@Path("/Test")
public MyType MyMethod() {}
关于如何使这项工作或我缺少什么的任何建议?