找不到面部servlet映射

时间:2013-07-26 08:25:00

标签: jsp

我有两个jsp文件。这些是GetName.jsp,NextPage.jsp。我收到警告“找不到面部servlet映射”。在下面这些文件的一般代码中。请帮帮我。

!!!这是GetName.jsp

<jsp:useBean id="user" class = "user.UserData" scope = "session"/>
<jsp:setProperty name="user" property = "*"/>

<html>

<body>

    <form  method=post action="NextPage.jsp"> 

        //There are some actions in there ...

        </form>

</body>
</html>

!!!这是NextPage.jsp

<jsp:useBean id="user" class = "user.UserData" scope= "session"/>

<html>

<body>
    //There are some action in there
</body>

</html>

0 个答案:

没有答案