SpringMVC----REST+HiddenHttpMethodFilter

2021-06-16 06:04

阅读:639

YPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

标签:resource   架构   添加   content   初始化   ora   表单   服务器   patch   

1.概述

  1.1  REST:即Representational State Transfer。(资源)表现层状态转化。是目前最流行的一种互联网软件架构。

      资源(Resources):网络上的一个实体,或者说是网络上的一个具体信息。

                  每种资源对应一个特定的URL。因此,URL也是每一个资源的独一无二的识别符。

      表现层(Representation):把资源具体呈现出来的形式,叫做他的表现层;

      状态转化(State Transfer):每发出一个请求,就代表了客户端和服务器的一次交互过程。HTTP协议,是一个无状态协议,即所有的状态都保存在服务器端。

                    因此,如果客户端想要操作服务器,必须通过某种手段,让服务器端发生“状态转化”。而这种转化是建立在表现层之上的,

                      所以就是“表现层状态转化”。具体说,就是HTTP协议里面,四个表示操作方式的动词:GET、POST、PUT、DELETE。

                    他们分别对应四种基本操作:GET用来获取资源,POST用来新建资源,PUT用来更新资源,DELETE用来删除资源。

2.示例

  2.1  /order/1 HTTP GET:得到id=1的order;

      /order/1 HTTP DELETE:删除id=1的order;

      /order/1 HTTP PUT:更新id=1的order;

      /order    HTTP POST:新增order;

3.HiddenHttpMethodFilter:

     浏览器form表单只支持GET和POST请求,而DELETE、PUT等method并不支持,spring3.0添加了一个过滤器,可以将这些请求转换为标准的http方法,使得支持GET、POST、PUT与DELETE请求。

4.测试代码

先配置web.xml


    xmlns="http://java.sun.com/xml/ns/javaee"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
    version="3.0">
    SPRING-MVC-01index.htmlindex.htmindex.jspdefault.htmldefault.htmdefault.jspspringDispatcherServletclass>org.springframework.web.servlet.DispatcherServletclass>
        
        
        
        
        1springDispatcherServlet/
    
    HiddenHttpMethodFilterorg.springframework.web.filter.HiddenHttpMethodFilterHiddenHttpMethodFilter/*
    
    
package com.yk.springmvc.handlers;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;

@RequestMapping("/springmvc")
@Controller
public class SpringMVCTest {
    
    private static final String SUCCESS = "success";
    
    /**
     * Rest风格的URL.
     * 以CRUD为例:
     * 新增:/order POST        
     * 修改:/order/1 PUT        
     * 获取:/order/1 GET        
     * 删除:/order/1 DELETE    
     * 
     * 如何发送PUT请求、DELETE请求?
     * 1.需要配置HiddenHttpMethodFilter;
     * 2.需要发送POST请求;
     * 3.需要在发送POST请求时携带一个隐藏域name="_method"的隐藏域,值为DELETE/PUT;
     * 
     * 在springMVC中的目标方法中,如何得到id呢?
     *         使用@PathVariable注解
     */
    @RequestMapping(value="/testRest/{id}",method=RequestMethod.PUT)
    public String testRestPut(@PathVariable Integer id){
        System.out.println("SpringMVCTest.testRestPut(PUT请求)"+id);
        return SUCCESS;
    }
    
    @RequestMapping(value="/testRest/{id}",method=RequestMethod.DELETE)
    public String testRestDelete(@PathVariable Integer id){
        System.out.println("SpringMVCTest.testRestDelete(DELETE请求)"+id);
        return SUCCESS;
    }
    
    @RequestMapping(value="/testRest",method=RequestMethod.POST)
    public String testRest(){
        System.out.println("SpringMVCTest.testRest(POST请求)");
        return SUCCESS;
    }
    
    @RequestMapping(value="/testRest/{id}",method=RequestMethod.GET)
    public String testRest(@PathVariable Integer id){
        System.out.println("SpringMVCTest.testRest(GET请求)"+id);
        return SUCCESS;
    }
    
    
    @RequestMapping("/testRequestMapping")
    public String testRequestMapping(){
        System.out.println("SpringMVCTest.testRequestMapping()");
//        return "success";    下面会有很多,所以定义一个常量
        return SUCCESS;
    }    
}


index.jsp


    pageEncoding="UTF-8"%>Insert title here    






Test GET

Test--RequestMapping

Hello World

5.控制台显示结果

SpringMVCTest.testRest(GET请求)1
SpringMVCTest.testRest(POST请求)
SpringMVCTest.testRestDelete(DELETE请求)1
SpringMVCTest.testRestPut(PUT请求)1

 

SpringMVC----REST+HiddenHttpMethodFilter

标签:resource   架构   添加   content   初始化   ora   表单   服务器   patch   

原文地址:https://www.cnblogs.com/yikuan-919/p/9727235.html


评论


亲,登录后才可以留言!