环境 - Eclipse IDE,通过在Eclipse中创建它的实例来运行tomcat服务器。
整体设置 - 我在Tomcat服务器中部署了2个Web应用程序(A& B),其中A调用B& B事情发生了。这在大多数时候都很好。
在进一步挖掘时,我尝试使用url -
从应用B加载jsp页面http://localhost:8080/testrunner/login
但不能这样做。但是我可以从这个URL调用index.html -
http://localhost:8080/testrunner/
当前解决方案 - 解决此问题的方法是简单地重新部署应用B&我很高兴去,即我是应用程序A呼叫应用程序B.
问题 -
任何帮助/线索都将不胜感激。
答案 0 :(得分:0)
从提供的详细信息我可以说
您已将应用程序部署为testrunner
。因此,http://localhost:8080/testrunner/
从部署描述符中给出的index.html
调用welcome-file-list
。
404 or Not Found error message is a HTTP standard response code indicating that the
client was able to communicate with the server, but the server could not find what was
requested.
执行http://localhost:8080/testrunner/login
时,服务器找不到任何名为\login
的映射。因此,检查您的应用程序中名为“/login
”的映射名为“testrunner”