Tomcat没有找到JSP文件

时间:2014-04-15 14:50:18

标签: java eclipse jsp tomcat

我正在学习Java EE,所以我开始使用JSP。我设置了我的eEclipse环境,并运行了一个简单的项目。当我尝试运行项目时,Tomcat无法找到我的JSP文件。我将我的JSP文件放在WebContent文件夹下,但Tomcat仍然无法找到它。

What It Looks Like

我不明白为什么它不会工作。我是否将文件放在其他地方?我将我的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>

3 个答案:

答案 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紧跟在项目目录之后。