I think I'm going crazy, but I canβt get a simple default index.html page to display in the dock.
The root context defined in web.xml
<servlet-mapping> <servlet-name>jersey-servlet</servlet-name> <url-pattern>/*</url-pattern> </servlet-mapping>
and I have a welcome file like:
<welcome-file-list> <welcome-file>index.html</welcome-file> </welcome-file-list>
But when I enter http: // localhost: 8182 / api / I get 404. This works FINE in tomcat, so what am I missing ??????????? I'm doing something dumb, I know, but still ... working on tomcat.
thanks
source share