eclipse-ee4j / eclipse-ee4j/jersey
Filter not applied to subresource
Open
Component: core
Priority: Major
Type: Bug
- Dominant language
- Java
- Stars
- 730
- Forks
- 382
- PR merge metrics
- No merged PRs in 30d
Description
Following is my code:
@Path("/parent")
@Test
public class Parent {
@GET
public Response one()
{ ... }
@Path("child")
public Child two(){ return new Child(); }
}
public class Child {
@GET
public Response child(){ ... }
}
/parent invokes the test filter, however /parent/child didnt.
Thanks
#### Affected Versions
[2.22.1]
Contributor guide
Assessment
This issue has not been assessed yet.