Springmvc using Abstractcontroller to set up requests

Source: Internet
Author: User

Common Request Methods

Git

POST

HEAD

PUT

CONNECT

DELETE

TRANCE

Options and so on.

Create a class to inherit the Abstractcontroller class

Package Cn.happy.day02;import Org.springframework.web.servlet.modelandview;import Org.springframework.web.servlet.mvc.abstractcontroller;import Org.springframework.web.servlet.mvc.Controller; Import Javax.servlet.http.httpservletrequest;import javax.servlet.http.httpservletresponse;//Processor class public class Firstcontroller extends Abstractcontroller {    protected Modelandview handlerequestinternal (httpservletrequest HttpServletRequest, HttpServletResponse httpservletresponse) throws Exception {        Modelandview mv = new Modelandview ( );        Mv.setviewname ("index");        return mv;    }}

  

Spring.xml Configuration

<?xml version= "1.0" encoding= "UTF-8"? ><beans xmlns= "Http://www.springframework.org/schema/beans" xmlns:       Xsi= "Http://www.w3.org/2001/XMLSchema-instance" xmlns:context= "Http://www.springframework.org/schema/context" xmlns:tx= "Http://www.springframework.org/schema/tx" xmlns:mvc= "Http://www.springframework.org/schema/mvc" xsi: schemalocation= "Http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/ Spring-beans.xsd Http://www.springframework.org/schema/context Http://www.springframework.org/schema/context /spring-context.xsd Http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring    -tx.xsd Http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd "> <bean id= "/hello" class= "Cn.happy.day02.FirstController" > <!--Limited request mode-<property name= "Suppo Rtedmethods "value=" Get,post "/> </bean>&Lt;/beans> 

  

Springmvc using Abstractcontroller to set up requests

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.