Hi all
Is there a way to respond to the "root" address without a trailing slash?
@Path("/")
public class RootResource { ... }
<servlet-mapping>
<servlet-name>app</servlet-name>
<url-pattern>/app/*</url-pattern>
</servlet-mapping>
I've found that the resource above only works with <
http://localhost/app/>
but that <
http://localhost/app> gives a 404. Am I doing something wrong
here?
Later
Charlie