這篇文章給大家介紹怎么在SpringMVC自定義綁定參數(shù),內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對(duì)大家能有所幫助。
成都創(chuàng)新互聯(lián)公司成立于2013年,我們提供高端網(wǎng)站建設(shè)、成都網(wǎng)站制作、成都網(wǎng)站設(shè)計(jì)公司、網(wǎng)站定制、網(wǎng)絡(luò)營(yíng)銷(xiāo)推廣、微信小程序開(kāi)發(fā)、微信公眾號(hào)開(kāi)發(fā)、成都網(wǎng)站推廣服務(wù),提供專(zhuān)業(yè)營(yíng)銷(xiāo)思路、內(nèi)容策劃、視覺(jué)設(shè)計(jì)、程序開(kāi)發(fā)來(lái)完成項(xiàng)目落地,為陽(yáng)臺(tái)護(hù)欄企業(yè)提供源源不斷的流量和訂單咨詢(xún)。
一、概述
1.3 參數(shù)綁定過(guò)程
1.2 @RequestParam
如果request請(qǐng)求的參數(shù)名和controller方法的形參數(shù)名稱(chēng)一致,適配器自動(dòng)進(jìn)行參數(shù)綁定。如果不一致可以通過(guò) @RequestParam 指定request請(qǐng)求的參數(shù)名綁定到哪個(gè)方法形參上。
對(duì)于必須要傳的參數(shù),通過(guò)@RequestParam中屬性required設(shè)置為true,如果不傳此參數(shù)則報(bào)錯(cuò)。
對(duì)于有些參數(shù)如果不傳入,還需要設(shè)置默認(rèn)值,使用@RequestParam中屬性defaultvalue設(shè)置默認(rèn)值。
可以綁定簡(jiǎn)單類(lèi)型:整型、字符串、單精/雙精度、日期、布爾型。
可以綁定簡(jiǎn)單pojo類(lèi)型
簡(jiǎn)單pojo類(lèi)型只包括簡(jiǎn)單類(lèi)型的屬性。
綁定過(guò)程:request請(qǐng)求的參數(shù)名稱(chēng)和pojo的屬性名一致,就可以綁定成功。
問(wèn)題:
如果controller方法形參中有多個(gè)pojo且pojo中有重復(fù)的屬性,使用簡(jiǎn)單pojo綁定無(wú)法有針對(duì)性的綁定,
比如:方法形參有items和User,pojo同時(shí)存在name屬性,從http請(qǐng)求過(guò)程的name無(wú)法有針對(duì)性的綁定到items或user。
二、自定義綁定使用屬性編輯器
springmvc沒(méi)有提供默認(rèn)的對(duì)日期類(lèi)型的綁定,需要自定義日期類(lèi)型的綁定。
2.1 使用WebDataBinder(了解)
在controller類(lèi)中定義:
//自定義屬性編輯器 // @InitBinder // public void initBinder(WebDataBinder binder) throws Exception { // // Date.class必須是與controler方法形參pojo屬性一致的date類(lèi)型,這里是java.util.Date // binder.registerCustomEditor(Date.class, new CustomDateEditor( // new SimpleDateFormat("yyyy-MM-dd HH-mm-ss"), true)); // }
使用這種方法問(wèn)題是無(wú)法在多個(gè)controller共用。
2.2 使用WebBindingInitializer(了解)
使用WebBindingInitializer讓多個(gè)controller共用 屬性編輯器。
自定義WebBindingInitializer,注入到處理器適配器中。
如果想多個(gè)controller需要共同注冊(cè)相同的屬性編輯器,可以實(shí)現(xiàn)PropertyEditorRegistrar接口,并注入webBindingInitializer中。
public class CustomPropertyEditor implements PropertyEditorRegistrar { @Override public void registerCustomEditors(PropertyEditorRegistry binder) { binder.registerCustomEditor(Date.class, new CustomDateEditor( new SimpleDateFormat("yyyy-MM-dd HH-mm-ss"), true)); } }
配置如下:
三、自定義參數(shù)綁定使用轉(zhuǎn)換器
3.1 實(shí)現(xiàn)Converter接口
定義日期類(lèi)型轉(zhuǎn)換器和字符串去除前后空格轉(zhuǎn)換器。
public class CustomDateConverter implements Converter{ @Override public Date convert(String source) { try { //進(jìn)行日期轉(zhuǎn)換 return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").parse(source); } catch (Exception e) { e.printStackTrace(); } return null; } } public class StringTrimConverter implements Converter { @Override public String convert(String source) { try { //去掉字符串兩邊空格,如果去除后為空設(shè)置為null if(source!=null){ source = source.trim(); if(source.equals("")){ return null; } } } catch (Exception e) { e.printStackTrace(); } return source; } }
3.2 配置轉(zhuǎn)換器
關(guān)于怎么在SpringMVC自定義綁定參數(shù)就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。