我只能在 Eclipse 中直接位于 WebContent 下时才能访问资源(比如 test.html)。如果我将它放在 WEB-INF 或 WEB-INF/jsp 中,IDE 会显示错误 404-requested resource is not available。
http://localhost:8080/MyApp/test.html (This works when test.html is under WebContent and not any of it's subdirectory)
当它在 WebContent/WEB-INF 中时,右键单击运行到以下 URL,显示 404-resource not available
http://localhost:8080/MyApp/WEB-INF/test.html
如何通过在 WEB-INF 或 WEB-INF/jsp 中放置“test.html”来访问它?
所有配置都是默认配置,在 web.xml 中没有指定限制,并使用 Tomcat 7 作为 Web 服务器