spring mvc 參數綁定

来源:https://www.cnblogs.com/jdkman/archive/2018/11/12/9948848.html
-Advertisement-
Play Games

基礎類型 原始類型:id必須要傳,否則報錯。 包裝類型:id可以不傳,後臺接受到null。 list&set 簡單類型 前臺 form表單 ajax 後臺 複雜類型 如 :(略)同json格式對象 數組 前臺 form表單 ajax 後臺 map 前臺 form ajax 後臺 pojo簡單屬性 前 ...


基礎類型

原始類型:id必須要傳,否則報錯。

@RequestMapping("/test")
@ResponseBody
public ResponseData test(int id) {}

包裝類型:id可以不傳,後臺接受到null。

@RequestMapping("/test")
@ResponseBody
public ResponseData test(Integer id) {}

list&set

簡單類型

前臺

form表單

<form action="${ctx}/test/test" method="post">
    <input type="text" name="ids">
    <input type="text" name="ids">
    <input type="text" name="ids">
    <input type="submit">
</form>

ajax

var data = [];
data.push(1);
data.push(2);
data.push(3);
$.ajax({
    url: ctx + "/test/test",
    traditional:true,//必要
    data: {ids: data},
    success: function (result) {
        alert(result);
    }
})

後臺

@RequestMapping("/test")
@ResponseBody
public ResponseData test(@RequestParam List<Integer>ids) {}

複雜類型

list<User>users:(略)同json格式對象

數組

前臺

form表單

<form action="${ctx}/test/test" method="post">
    <input type="text" name="ids">
    <input type="text" name="ids">
    <input type="text" name="ids">
    <input type="submit">
</form>

ajax

var data = [];
data.push(1);
data.push(2);
data.push(3);
$.ajax({
    url: ctx + "/test/test",
    traditional:true,//必要
    data: {ids: data},
    success: function (result) {
        alert(result);
    }
})

後臺

@RequestMapping("/test")
@ResponseBody
public ResponseData test(Integer[]ids) {
}

map

前臺

form

<form action="${ctx}/test/test" method="post">
    <input type="text" name="name">
    <input type="text" name="sex">
    <input type="submit">
</form>

ajax

var data = {name:"zhangsan",sex:"man"};
$.ajax({
    url: ctx + "/test/test",
    data:data,
    success: function (result) {
        alert(result);
    }
});

後臺

@RequestMapping("/test")
@ResponseBody
public ResponseData test(@RequestParam Map<String,String> params) {}

pojo簡單屬性

前臺

form

<form action="${ctx}/test/test" method="post">
    <input type="text" name="name">
    <input type="text" name="sex">
    <input type="submit">
</form>

ajax

var data = {name:"zhangsan",sex:"man"};
$.ajax({
    url: ctx + "/test/test",
    data:data,
    success: function (result) {
        alert(result);
    }
});

後臺

@RequestMapping("/test")
@ResponseBody
public ResponseData test(User user) {}
public class User{
    private String name;
    private String sex;
    //get and set ...
}

pojo包含list

前臺

form

<form action="${ctx}/test/test" method="post">
    <input type="text" name="userName" value="zhangsan">
    <input type="text" name="sex" value="123">
    <input type="text" name="posts[0].code" value="232"/>
    <input type="text" name="posts[0].name" value="ad"/>
    <input type="text" name="posts[1].code" value="ad"/>
    <input type="text" name="posts[1].name" value="232"/>
    <input type="submit">
</form>

ajax

var user={userName:"zhangsan",password:"123"};
user['posts[0].name']="ada";
user['posts[0].code']="ada";
user['posts[1].name']="ad";
user['posts[1].code']="ad2323a";
$.ajax({
    url: ctx + "/test/test",
    type:"post",
    contentType: "application/x-www-form-urlencoded",
    data:user,
    success: function (result) {
        alert(result);
    }
});

後臺

public class User{
    private String name;
    private String sex;
    private List<Post> posts;
    //get and set ...
}
public class Post {
    private String code;
    private String name;
    //get and set ...
}
@RequestMapping("/test")
@ResponseBody
public ResponseData test(User user) {}

date類型

使用註解方式

綁定單個方法

對於傳遞參數為Date類型,可以在參數前添加@DateTimeFormat註解。如下:

@RequestMapping("/test")
public void test(@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") Date date){}

如果傳遞過來的是對象,可以在對象屬性上添加註解。

@RequestMapping("/test")
public void test(Person person){}

Public class Person{
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    Private Date date;
    Private String name;
}
綁定整個controller的所有方法:
@Controller
public class FormController {

    @InitBinder
    public void initBinder(WebDataBinder binder) {
        SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
        dateFormat.setLenient(false);
        binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, false));
    }
}
@Controller
public class FormController {
   @InitBinder
    protected void initBinder(WebDataBinder binder) {
        binder.addCustomFormatter(new DateFormatter("yyyy-MM-dd"));
    }
}

使用PropertyEditor方式

使用ConversionService方式

參考:

https://www.2cto.com/kf/201501/374062.html

https://docs.spring.io/spring/docs/current/spring-framework-reference/web.html#mvc-ann-initbinder

枚舉類型

mvc配置文件添加:

 <!--枚舉類型轉化器-->
    <bean id="formattingConversionService"
          class="org.springframework.format.support.FormattingConversionServiceFactoryBean">
        <property name="converters">
            <set>
                <bean class="org.springframework.core.convert.support.StringToEnumConverterFactory"/>
            </set>
        </property>
    </bean>

參考:

Spring Boot綁定枚舉類型參數

Spring MVC 自動為對象註入枚舉類型

json格式對象

後臺

@RequestMapping(value = "introductionData.do", method = {RequestMethod.POST})
@ResponseBody
public RestResult introductionData(@RequestBody SignData signData) {
}
public class SignData {
    private ApplicationInformation applicationInformation;
    private ApplyUserInformation applyUserInformation;
    private StudentInformation studentInformation;
    private List<VolunteerItem> volunteerItems;
    private ResidencePermit residencePermit;
    private List<Family> families;
    //get and set ...
}

前臺

var data = {}
var applyUserInformation = {
    "applyName": APPLYNAME,
    "applyCardType": "0",
    "applyCardID": APPLYIDCARD,
    "applyMobile": APPLYMOBILE
};
var applicationInformation = {
    "live_address": nowaddress,
    "addressJZArea": addressJZArea,
    "schoolLevel": schoolLevel,
    "schoolType": schoolType,
    "applyName": APPLYNAME,
    "contacts": contacts,
    "contactNumber": contactNumber
};
var studentInformation = {
    "cardType": cardType,
    "cardID": cardID,
    "studentName": studentName,
    "studentType": studentType,
    "studentType1": studentSpecialCase,
    "isDisability": "0",
    "studentCategory": "0",
    "birthday":birthday,
    "graduationschool":SchoolName,
    "graduationclass":classNameinfo,
    "applyName": APPLYNAME
};
data["applyUserInformation"] = applyUserInformation;
data["applicationInformation"] = applicationInformation;
data["studentInformation"] = studentInformation;

$.ajax({
    url: ctx + '/overseasData.do',
    type: "post",
    data: JSON.stringify(data),
    contentType: "application/json;charset=utf-8",
    success: function (result) {}
})

參考:https://blog.csdn.net/qq_29663071/article/details/68922043


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

-Advertisement-
Play Games
更多相關文章
  • 隨著互聯網的興起,web開發變得愈發的重要。Python作為當前火熱的語言, 其中的web開發框架可以說是百花齊放,下麵聊一聊這些框架。 一: 基於Python的代表性Web框架 "Django" Django是一個開放源代碼的Web應用框架,由Python寫成。採用了MTV的框架模式,即模型M,模 ...
  • M:model代表的是應用的業務邏輯,通過Javabeen,EJB實現, V:view代表的是應用的表示面,有jsp頁面產生 C:controller提供應用的處理過程機制,一般是一個servlet,通過這種設計模型把應用邏輯,處理過程和顯示邏輯分成不同的組件實現。這些組件可以進行交互和重用 Jav ...
  • 1、一行代碼實現1-100的和 2、如何在一個函數內修改全局變數的值 3、字典如何刪除鍵和合併兩個字典 4、說一說對python的GIL的理解 GIL是python的全局解釋器鎖,在一個進程中如果有多個線程執行,其中一個線程在執行的時候會霸占python解釋器(加鎖即GIL),那麼其他線程就不能執行 ...
  • WIN7系統,VC2010下。 程式A靜態鏈接B.dll動態庫。 B.dll中導出3個類: (1) 基類 class AFX_EXT_CLASS base { public: base(){}; virtual ~base(){}; virtual int getX() = 0; protected ...
  • 一 、約束 python中約束有兩種 第一種,通過拋異常進行約束,這種是子類不按我要求的來,我就給你拋異常(推薦) 操作:提取一個父類. 在父類中給出一個方法。但在方法中不給出任何代碼,直接拋異常 1 # 貼吧 2 # 項目經理(級別高一點兒) 3 class Base: 4 def login(s ...
  • 2018年11月12日20:51:35 一、基礎知識: 1、JVM、JRE和JDK的區別: JVM(Java Virtual Machine):java虛擬機,用於保證java的跨平臺的特性。 java語言是跨平臺,jvm不是跨平臺的。 JRE(Java Runtime Environment):j ...
  • 按位與&: 只要對應的二個二進位都為1時,結果位就為1 按位或|:只要對應的二個二進位有一個為1時,結果位就為1 按位異或^:0⊕0=0,1⊕0=1,0⊕1=1,1⊕1=0(同為0,異為1) 按位非:取反操作符 ...
  • 在定義一個類的時候,有時我們需要獲取一個類的屬性值,而這個屬性值需要經過類中的其他屬性運算來獲得的。那麼很容易,只要我們在類中定義一個方法,並且通過調用方法可以獲取到那個需要運算的屬性值。那麼,問題來了,當有一天需求變了,你需要反向操作你之前實現的類,你需要通過傳入那個需要運算得來的值來獲取參與運算 ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...