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/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- java傳送GET和post請求Java
- Postman傳送Post請求Postman
- Java傳送Post請求Java
- httprequest- post- get -傳送請求HTTP
- file_get_contents傳送post請求
- 傳送GET請求 示例
- postman(二):使用postman傳送get or post請求Postman
- python傳送HTTP POST請求PythonHTTP
- vue 發起get請求和post請求Vue
- get請求和post請求的區別
- cURL實現傳送Get和Post請求(PHP)PHP
- Python中get、post請求詳解(HTTP請求頭、狀態碼)PythonHTTP
- 請求OpenFeign的GET請求時,請求為何失敗?
- linux用curl傳送post請求Linux
- 呼叫ASP.NET Web API不能傳送PUT/DELETE請求ASP.NETWebAPIdelete
- python requests get請求 如何獲取所有請求Python
- 簡述六種請求方法,get、head、put、delete、post、options區別delete
- uni-app的POST請求和GET請求APP
- POST與GET請求區別
- 使用Postman傳送POST請求的指南Postman
- 以Raw的方式傳送POST請求
- java post 請求Java
- HTTP GET請求傳bodyHTTP
- 如何傳送請求以及AJAX
- Vue 使用 Axios 傳送請求的請求體問題VueiOS
- Postman傳送請求引數是Map格式的請求Postman
- java傳送get請求帶引數Java
- vue2.0 axios post請求傳參問題(ajax請求)VueiOS
- Vue中通過Axios向SpringBoot傳送get和post請求VueiOSSpring Boot
- ajax中POST請求與引數(請求體)設定
- 4.爬蟲 requests庫講解 GET請求 POST請求 響應爬蟲
- RestTemplate exchange GET POST請求傳引數DEMOREST
- java傳送http請求JavaHTTP
- axios 發get,post 請求小結iOS
- get與post的請求區別
- Java Http Get Post 請求工具類JavaHTTP
- go對get、post請求封裝Go封裝
- get,post URL加字尾請求