Hi, If I have two classes, let's say:
@Path("classA")
public class A {
@Get
@Path("method")
public void method() {}
}
@Parent(A.class)
@Path("{classB}")
public class B {
}
The call to classA/method returns a 404.
But refactor like this:
@Path("classA")
public class A {
}
@Parent(A.class)
@Path("{classB}")
public class B {
@Get
@Path("method")
public void method() {}
}
The call to classA/classB/method works.
What are the rules to end up in that behaviour?
Thanks!
SerafĂn.
