The Web. XML in the SPRINGMVC of the Java EE a simple call

Source: Internet
Author: User

<?XML version= "1.0" encoding= "UTF-8"?><Web-appID= "Webapp_9"version= "2.4"xmlns= "HTTP://JAVA.SUN.COM/XML/NS/J2EE"Xmlns:xsi= "Http://www.w3.org/2001/XMLSchema-instance"xsi:schemalocation= "Http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">    <!--registering the SPRINGMVC core controller -    <servlet>        <Servlet-name>Dispatcherservlet</Servlet-name>        <Servlet-class>Org.springframework.web.servlet.DispatcherServlet</Servlet-class>        <!--notifies Dispatcherservlet to go to the specified directory to load the Springmvc.xml configuration file -        <Init-param>            <Param-name>Contextconfiglocation</Param-name>            <Param-value>Classpath:spring.xml</Param-value>        </Init-param>    </servlet>    <servlet-mapping>        <Servlet-name>Dispatcherservlet</Servlet-name>        <Url-pattern>*.action</Url-pattern>    </servlet-mapping>    <!--sign up for the Chinese garbled problem with the POST request provided by spring -    <Filter>        <Filter-name>Characterencodingfilter</Filter-name>        <Filter-class>Org.springframework.web.filter.CharacterEncodingFilter</Filter-class>        <Init-param>            <Param-name>Encoding</Param-name>            <Param-value>UTF-8</Param-value>        </Init-param>    </Filter>    <filter-mapping>        <Filter-name>Characterencodingfilter</Filter-name>        <Url-pattern>/*</Url-pattern>    </filter-mapping>    <Display-name>Archetype Created Web Application</Display-name></Web-app>

 Packagecom.newtouch.action;ImportOrg.springframework.stereotype.Controller;ImportOrg.springframework.ui.Model;Importorg.springframework.web.bind.annotation.RequestMapping, @Controller @requestmapping ("/USER") Public classFirstmvc {@RequestMapping ("/hello")//You can add more than one by {"" "" "" "} PublicString Hello (model model) {Model.addattribute ("MSG", "You succeeded."); return"/index.jsp"; }}

The Web. XML in the SPRINGMVC of the Java EE a simple call

Related Article

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.