Details
-
Improvement
-
Status: Closed
-
Major
-
Resolution: Fixed
-
8.1.3
-
None
-
None
Description
In the following scenario, if you try to hit just "/root", the page will not be styled because the /htdocs subpath gets matched to the Foo resource:
@Rest(path="/root", children=Foo.class) public class Root {} @Rest(path="/{foo}") public class Foo { @RestMethod public Object doGet() {} }