Spring MVC的常用註解

来源:https://www.cnblogs.com/gdjlc/archive/2019/10/01/11614584.html
-Advertisement-
Play Games

一、Controller註解 二、RestController註解 三、RequestMapping註解 四、PathVariable註解 五、RequestParam註解 六、文件上傳 ...


Spring Boot 預設集成了Spring MVC,下麵為Spring MVC一些常用註解。

開發環境:IntelliJ IDEA 2019.2.2
Spring Boot版本:2.1.8

新建一個名稱為demo的Spring Boot項目。

一、Controller註解

Controller註解用於修飾Java類,被修飾的類充當MVC中的控制器角色。
Controller註解使用了@Component修飾,使用Controller註解修飾的類,會被@ComponentScan檢測,並且會作為Spring的bean被放到容器
中。

package com.example.demo;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

@Controller
public class DemoController {

    @RequestMapping("/index")
    @ResponseBody
    public String index(){
        return "index";
    }
}

運行項目後,瀏覽器訪問:http://localhost:8080/index,頁面顯示:
index

二、RestController註解

RestController註解是為了更方便使用@Controller和@ResponseBody。
@ResponseBody修飾控制器方法,方法的返回值將會被寫到HTTP的響應體中,所返回的內容不放到模型中,也不會被解釋為視圖的名稱。
下麵例子等同於上面例子。

package com.example.demo;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class DemoController {

    @RequestMapping("/index")
    public String index(){
        return "index";
    }
}

三、RequestMapping註解

RequestMapping註解可修飾類或方法,主要用於映射請求與處理方法。
當用於修飾類並設置了URL時,表示為各個請求設置了URL首碼。
RequestMapping註解主要有以下屬性:
(1)path與value:用於配置映射的url;
(2)method:映射的HTTP方法,如GET、POST、PUT、DELETE;
也可以使用預設配置了@RequestMapping的method屬性的幾個註解:
@GetMapping等同於RequestMapping(method="RequestMethod.GET")
@PostMapping、@PutMapping、@DeleteMapping類似。
(3)params:為映射的請求配置參數標識;
(4)consumes:配置請求的數據類型,如XML或JSON等;
(5)produces:配置響應的數據類型,如“application/json”返回json數據;

package com.example.demo;

import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;

@RestController
@RequestMapping("/oa")
public class DemoController {

    @RequestMapping(value = "/index1")
    public String index1(){
        return "index1";
    }

    @RequestMapping(value = "/index2", method = RequestMethod.GET)
    public String index2(){
        return "index2";
    }

    @GetMapping(value = "/index3")
    public String index3(){
        return "index3";
    }
}

瀏覽器分別訪問:
http://localhost:8080/oa/index1
http://localhost:8080/oa/index2
http://localhost:8080/oa/index3
頁面分別顯示:
index1
index2
index3

四、PathVariable註解

PathVariable註解主要用於修飾方法參數,表示該方法參數是請求URL的變數。

package com.example.demo;

import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class DemoController {

    @GetMapping("/index1/{name}")
    public String index1(@PathVariable String name){
        return "index1: " + name;
    }

    //可以為@PathVariable配置屬性值,顯式綁定方法參數與URL變數的值
    @GetMapping("/index2/{name}")
    public String index2(@PathVariable("name") String lc){
        return "index2: " + lc;
    }
}

瀏覽器訪問http://localhost:8080/index1/a
頁面顯示:
a
訪問http://localhost:8080/index1/b
頁面顯示:
b

五、RequestParam註解

RequestParam註解用於獲取請求體中的請求參數,如表單提交後獲取頁面控制項name值。

package com.example.demo;

import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;

import java.util.Map;

@RestController
public class DemoController {

    @PostMapping("/index1")
    public String index1(@RequestParam String userName){
        return userName;
    }

    //map存放所有請求參數
    @PostMapping("/index2")
    public String index2(@RequestParam Map<String,String> map){
        String age = map.get("age");
        String sex = map.get("sex");
        return age + "," + sex;
    }
}

隨便在電腦中如桌面新建一個html文件:

<html>
<body>
  <form method="post" action="http://localhost:8080/index1">
    <input type="text" name="userName" value="abc" />    
    <input type="submit" value="提交1" />
  </form>
  <form method="post" action="http://localhost:8080/index2">
    <input type="text" name="age" value="22" />
    <input type="password" name="sex" value="male" />    
    <input type="submit" value="提交2" />
  </form>
</body>
</html>

瀏覽器打開後,如果點擊“提交1”按鈕後,頁面跳到http://localhost:8080/index1,顯示abc。
如果點擊“提交2”按鈕後,頁面跳到http://localhost:8080/index2,顯示22,male。

六、文件上傳

使用RequestParam註解可以實現文件上傳。

package com.example.demo;

import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.multipart.MultipartFile;

import java.io.File;
import java.io.IOException;

@RestController
public class DemoController {

    @PostMapping("/upload")
    public String upload(@RequestParam("file") MultipartFile file) throws IOException {
        String fileName = file.getOriginalFilename();
        String filePath = "D:/";
        File dest = new File(filePath + fileName);
        file.transferTo(dest);
        return "上傳成功";
    }

}

隨便新建一個html文件

<html>
<body>
  <form method="post" action="http://localhost:8080/upload" enctype="multipart/form-data">
    <input type="file" name="file" />    
    <input type="submit" value="提交" />
  </form>  
</body>
</html>

瀏覽器打開後,選擇一個文件,點擊提交後,文件保存到了D盤。


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • JS中數據類型轉換彙總 JS中的數據類型分為 【基本數據類型】 數字 number 字元串 string 布爾 boolean 空 null 未定義 undefined 【引用數據類型】 對象 object 普通對象 數組對象 (Array) 正則對象 (RegExp) 日期對象 (Date) 數學 ...
  • 1. 繼承 ES 中只支持實現繼承,而且其實現繼承主要依靠原型鏈來實現的。 2. 原型鏈 ES中 描述了 原型鏈的概念,並將原型鏈作為實現繼承的主要方法。其基本思想是利用原型讓一個引用類型繼承另一個引用類型的屬性和方法。 回顧一下構造函數、原型和實例的關係 每個構造函數都有一個原型對象,原型對象都包 ...
  • JavaScript 不提供任何內建的列印或顯示函數。 JavaScript 顯示方案 JavaScript 能夠以不同方式“顯示”數據: 使用 window.alert() 寫入警告框 使用 document.write() 寫入 HTML 輸出 使用 innerHTML 寫入 HTML 元素 使 ...
  • 模板模式(Template): 提到模板,可能大多數人想到的是"簡歷模板"、"論文模板"等,比如我們要寫簡歷時,會從網上下載一份漂亮的簡歷模板,其格式是固定的,我們根據自己的情況填充不同的內容。模板模式定義一個操作中的演算法的骨架,而將一些步驟延遲到子類中。模板方法使得子類可以不改變一個演算法的結構即可 ...
  • 事務一致性 首先,我們來回顧一下ACID原則: Atomicity:原子性,改變數據狀態要麼是一起完成,要麼一起失敗 Consistency:一致性,數據的狀態是完整一致的 Isolation:隔離線,即使有併發事務,互相之間也不影響 Durability:持久性, 一旦事務提交,不可撤銷 在單體應 ...
  • 多年後, 再次翻閱設計模式書籍, 將每種模式的要點總結於此, 需要本身有一定設計模式基礎, 再結合要點, 幫助更好理解與運用. ...
  • 一 前戲 我們在前面的課程中已經學會了給視圖函數加裝飾器來判斷是用戶是否登錄,把沒有登錄的用戶請求跳轉到登錄頁面。我們通過給幾個特定視圖函數加裝飾器實現了這個需求。但是以後添加的視圖函數可能也需要加上裝飾器,這樣是不是稍微有點繁瑣。 學完今天的內容之後呢,我們就可以用更適宜的方式來實現類似給所有請求 ...
  • 源碼git地址:https://github.com/mybatis/mybatis-3 目標結構: mybatis是數據持久化解決方案將用戶從JDBC訪問中解放出來,用戶只需要定義需要操作的SQL語句,無需關註底層JDBC操作,就可以以面向對象的方式來進行持久層操作,底層資料庫的連接獲取,資料庫訪 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...