以下の 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/テスト
また
/PathA/SomePathA/SomePathB/Test
次のようなことを試してみましたが、うまくいきません
@Path("/Test")
public MyType MyMethod() {}
これをどのように機能させるか、または何が欠けているかについての提案はありますか??