SpringMVC中如何发送GET请求、POST请求、PUT请求、DELETE请求。

我们知道发起 GET 请求和 POST 请求,只需要在表单的 form 标签中,设置 method ="get" 就是GET请求。

设置 form 标签的method="post"。就会发起 POST 请求。而 PUT 请求和 DELETE 请求。

要有 post 请求的 form 标签

在 form 表单中,添加一个额外的隐藏域 _method ="PUT" 或 _method = "DELETE"

在web.xml中配置一个Filter过滤器org.springframework.web.filter.HiddenHttpMethodFilter(注意,这个Filter一定要在处理乱码的Filter后面 )

简单代码实现

1. RestController.java

package com.spring.mvc.controller;

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;

import org.springframework.web.servlet.ModelAndView;

/**

*  Restful风格的 Controller

* Created by YongXin Xue on 2020/05/12 9:55

*/

@Controller

public class RestController {

///// restful风格中请求方式GET、POST、PUT、DELETE分别表示查、增、改、删。

/**

* @PathVariable 路径参数获取

* value = "/queryUserById/{id}" 中的 {id} 表示路径参数 ,表示一个可变的值。 {id} 里面的 id 是变量的名称

*

* @PathVariable("id") Integer id 表示把指定 id 的路径参数值,赋给方法参数id。

*  [ 也可以设置多个值 ] 如下 : Integer id; String name;

*/

@RequestMapping(value = "/queryUserById/{id}/{name}", method = RequestMethod.GET)

public ModelAndView queryUserById(@PathVariable("id") Integer id,

                  @PathVariable("name") String name){

System.out.println(" 查询一条用户记录信息!! " + id + name);

// redirect 到 index.jsp 页面

return new ModelAndView("/index.jsp");

@RequestMapping(value = "/queryUserList", method = RequestMethod.GET)

public ModelAndView queryUserList() {

System.out.println(" 查询全部用户记录信息!! ");

// redirect 到 index.jsp 页面

return new ModelAndView("redirect:/index.jsp");

@RequestMapping(value = "/saveUser", method = RequestMethod.POST)

public ModelAndView saveUser() {

System.out.println(" 保存用户记录信息!! ");

// redirect 到 index.jsp 页面

return new ModelAndView("redirect:/index.jsp");

@RequestMapping(value = "/updateUser/1", method = RequestMethod.PUT)

public ModelAndView updateUser() {

System.out.println(" 更新用户记录信息!! ");

// redirect 到 index.jsp 页面
return new ModelAndView("/index.jsp");
dView("/
@RequestMapping(value = "/deleteUserById/1", method = RequestMethod.DELETE)
public ModelAndView deleteUserById() {
System.out.println(" 删除用户记录信息!! ");
// redirect 到 index.jsp 页面
return new ModelAndView("redirect:/index.jsp");
2. spring-mcv.xml

https://www.gendan5.com/topic...
mlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.or... http://www.springframework.org/schema/context https://www.springframework.o...d">

3. web.xml

xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/j..._4_0.xsd"

version="4.0">

DispatcherServlet

org.springframework.web.servlet.DispatcherServlet

contextConfigLocation

classpath:spring-mvc.xml

1

DispatcherServlet

/

HiddenHttpMethodFilter

org.springframework.web.filter.HiddenHttpMethodFilter

HiddenHttpMethodFilter

/*

4. index.jsp

<%-- Created by YongXin Xue on 2020/05/12 9:52 --%>

Restful 风格

Restful ADN CRUD

查询一条用户记录

查询全部用户记录

如何发送 PUT请求,和 DELETE 请求

1.首先要有一个 post 请求的表单

2.2. 要有一个隐藏域

  1. 在 web.xml 中配置 Restful 的 Filter 过滤器用来识别 PUT 和 DELETE 请求

--%>

你可能感兴趣的:(java)