我有两个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>