Action submission path problem in form form

Source: Internet
Author: User
The action submission path problem in form form the form form has some problems with the Action property and the method property;

I encountered an issue with the form form submission to Servelet processing:
(1) <form name= "Form1" action= "①? "Method=" ②? ">
Contents of the form
</form>

(2) The corresponding servlet class for processing user requests is Helloservlet.java;


(3) Configure the Web. xml file:
<servlet>
<servlet-name>③servlet</servlet-name>
<servlet-class>/HelloServlet</servlet-class>
</servlet>

<servlet-mapping>
<servlet-name>③servlet</servlet-name>
<url-pattern>/①welcome</url-pattern>
</servlet-mapping>

Then in the login.jsp it should be:

<form action= "①welcome" method= "②? ">

In this case, the login.jsp URL is http://localhost:8080/jsp/login.jsp

And the URL of Helloservlet.java is Http://localhost:8080/jsp/welcome

Note: The ③ corresponds to two servlet-name in Web. XML, and the Url-pattern in ① is consistent with the Action property value in the form form.

Action submission path problem in form form

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.