url模式未在servlet应用程序的web.xml中更新

时间:2017-01-21 15:24:05

标签: java xml eclipse tomcat servlets

嗨,我有一个在tomcat中运行的小型servlet应用程序。在我的web.xml中,我已经将url模式作为test4和html中的表单动作也给了我同样的,我工作正常。一段时间后,我在两个地方改变了我的网址作为测试,然后运行应用程序,然后它抛出HTTP状态404 - / ServletEx / test4

这里我怀疑为什么网址没有更新。我从eclipse清理项目,我删除了tomcat并重新配置,即使它没有更新。可以任何身体PLZ告诉我为什么它不更新以及如何更新它。还有一个疑问是我的应用程序不在tomcat webapps文件夹中,我想我应该在部署之后就在那里。

这是我的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" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" version="2.5">
<servlet>

    <servlet-name>Example</servlet-name>
    <servlet-class>com.ex.ExampleServlet</servlet-class>
</servlet>
<servlet-mapping>

    <servlet-name>Example</servlet-name>
    <url-pattern>/test</url-pattern>
</servlet-mapping>
</web-app>

这是我的HTML

<!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="test">

            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>

0 个答案:

没有答案