1

I'm working on Windows 7 with Eclipse Java EE IDE for Web Developers , and Tomcat 7 .

The hierarchy of my project is :

enter image description here

When I run the following web.xml , meaning I hit CTRL+F11 from within Eclipse the following 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>LoginExample</display-name>
  <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
  </welcome-file-list>
</web-app>

I get this :

enter image description here

enter image description here

I don't understand what causes this , any idea anyone ?

Here is index.jsp :

<%@ page language="java" 
    contentType="text/html; charset=windows-1256"
    pageEncoding="windows-1256"
%>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">

<html>
    <head>
                                <meta http-equiv="Content-Type" content="text/html; charset=windows-1256">
        <title>Login Page</title>
    </head>

    <body>
        <form action="LoginServlet">

            Please enter your username      
            <input type="text" name="un"/><br>      

            Please enter your password
            <input type="text" name="pw"/>

            <input type="submit" value="submit">            

        </form>
    </body>
</html>

Thanks

4

3 回答 3

2

WEB-INF是一个受保护的文件夹,servlet 容器(在你的例子中是 Tomcat)不允许你访问它。如果有人可以查看您的 Web 应用程序设置(尤其是安全设置),那就太糟糕了。只需转到localhost:8080/LoginExample/index.jsp,然后您就可以看到您的页面。

于 2013-11-03T11:12:57.883 回答
1

您不能直接从 Web 应用程序访问WEB-INF目录或其任何内容。

如果您想访问index.jsp页面,只需打开 URL http://localhost:8080/LoginExample,Web 服务器就会将您转发到index.jsp(在 web.xml 中指定)

或者您始终可以使用其完整路径直接访问该页面,如http://localhost:8080/LoginExample/index.jsp

于 2013-11-03T11:17:42.420 回答
1

尝试更改路径,而不是 /WEB-INF/web.xml 到 /index.jsp,如果这不起作用尝试使用 servlet 映射解决它,类似于Servlet JSP web.xml

于 2013-11-03T11:17:50.870 回答