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");
@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
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="
xmlns:xsi=" xmlns:context="
xsi:schemaLocation="
<context:非農資料
<!-- 包掃描 -->
<context:component-scan base-package="com.spring.mvc"/>
</beans>
3. web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="
xmlns:xsi="e"
xsi:schemaLocation=" /web-app_4_0.xsd"
version="4.0">
<!-- 配置前端控制器 -->
<servlet>
<servlet-name>DispatcherServlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<!-- 配置 SpringMVC 的容器配置檔案路徑 -->
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:spring-mvc.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>DispatcherServlet</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
<!-- 中配置 Restful 的 Filter 過濾器用來識別 PUT 和 DELETE 請求 -->
<filter>
<filter-name>HiddenHttpMethodFilter</filter-name>
<filter-class>org.springframework.web.filter.HiddenHttpMethodFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>HiddenHttpMethodFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>
4. index.jsp
<%-- Created by YongXin Xue on 2020/05/12 9:52 --%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Restful 風格</title>
</head>
<body>
<h2>Restful ADN CRUD</h2>
<h3><a href="${pageContext.request.contextPath}/queryUserById/290/lance">查詢一條使用者記錄</a></h3>
<h3><a href="${pageContext.request.contextPath}/queryUserList">查詢全部使用者記錄</a></h3>
<form action="${pageContext.request.contextPath}/saveUser" method="post">
<input type="submit" value="儲存使用者">
</form>
如何傳送 PUT請求,和 DELETE 請求
1. 首先要有一個 post 請求的表單
2. 2. 要有一個隱藏域
<input type="hidden" name="_method" value="PUT">
<input type="hidden" name="_method" value="DELETE">
3. 在 web.xml 中配置 Restful 的 Filter 過濾器用來識別 PUT 和 DELETE 請求
--%>
<form action="${pageContext.request.contextPath}/updateUser/1" method="post">
<input type="hidden" name="_method" value="PUT">
<input type="submit" value="更新使用者">
</form>
<form action="${pageContext.request.contextPath}/deleteUserById/1" method="post">
<input type="hidden" name="_method" value="DELETE">
<input type="submit" value="刪除使用者">
</form>
</body>
</html>
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69946337/viewspace-2691897/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 【轉】怎麼用PHP傳送HTTP請求(POST請求、GET請求)?PHPHTTP
- iOS 同步請求 非同步請求 GET請求 POST請求iOS非同步
- java傳送GET和post請求Java
- PHP傳送POST和GET請求PHP
- Postman傳送Post請求Postman
- Java傳送Post請求Java
- httprequest- post- get -傳送請求HTTP
- php 利用socket傳送GET,POST請求PHP
- java傳送http的get、post請求JavaHTTP
- 傳送GET請求 示例
- java傳送post請求 ,請求資料放到body裡Java
- C# 傳送POST請求C#
- postman(二):使用postman傳送get or post請求Postman
- file_get_contents傳送post請求
- Android Http請求框架一:Get 和 Post 請求AndroidHTTP框架
- Android okHttp網路請求之Get/Post請求AndroidHTTP
- 使用HttpClient傳送GET請求HTTPclient
- 一、put請求
- cURL實現傳送Get和Post請求(PHP)PHP
- get請求和post請求的區別
- vue 發起get請求和post請求Vue
- python傳送HTTP POST請求PythonHTTP
- post 封裝Map 傳送請求封裝
- 用Fiddler 傳送post請求
- 使用C#傳送POST請求C#
- 請求OpenFeign的GET請求時,請求為何失敗?
- 呼叫ASP.NET Web API不能傳送PUT/DELETE請求ASP.NETWebAPIdelete
- Zttp 傳送 form params 請求 而非 JSON 請求ORMJSON
- Python中get、post請求詳解(HTTP請求頭、狀態碼)PythonHTTP
- get請求和post請求區別詳解
- uni-app的POST請求和GET請求APP
- Go語言開發傳送Get和Post請求Go
- python requests get請求 如何獲取所有請求Python
- POST與GET請求區別
- HTTP Get,Post請求詳解HTTP
- Get和Post請求詳解
- linux用curl傳送post請求Linux
- 以Raw的方式傳送POST請求