我正在学习Java EE,所以我开始使用JSP。我设置了我的eEclipse环境,并运行了一个简单的项目。当我尝试运行项目时,Tomcat无法找到我的JSP文件。我将我的JSP文件放在WebContent
文件夹下,但Tomcat仍然无法找到它。
我不明白为什么它不会工作。我是否将文件放在其他地方?我将我的web.xml
保留为默认值:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
<display-name>Test</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
</web-app>
答案 0 :(得分:4)
从屏幕截图中您尝试访问http://localhost:8080/Test.jsp
,但我想应用程序可在/Test
路径上找到;所以你必须访问:
http://localhost:8080/Test/Test.jsp
您可以在选项卡Web Project Settings -> Context root
上的项目属性中查看和更改Eclipse上的此基本路径名称。
默认值是项目名称。
答案 1 :(得分:0)
如果您运行它,web.xml
将正常工作:htttp:// localhost:8080 // Test / test.jsp
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
<display-name>Test</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>test.jsp</welcome-file>
</welcome-file-list>
</web-app>
答案 2 :(得分:0)
http://www.example.com:8080/Test/Test.jsp url表示项目名称为Test,Test.jsp紧跟在项目目录之后。