參考資料
創(chuàng)新互聯(lián)是一家專業(yè)提供志丹企業(yè)網(wǎng)站建設(shè),專注與網(wǎng)站設(shè)計制作、成都網(wǎng)站設(shè)計、H5網(wǎng)站設(shè)計、小程序制作等業(yè)務(wù)。10年已為志丹眾多企業(yè)、政府機(jī)構(gòu)等服務(wù)。創(chuàng)新互聯(lián)專業(yè)網(wǎng)站制作公司優(yōu)惠進(jìn)行中。作用于Controller層中,在Controller層的方法執(zhí)行前執(zhí)行,主要作用是初始化當(dāng)前Controller層的數(shù)據(jù)綁定器(或者屬性綁定器),幫助完成數(shù)據(jù)處理和數(shù)據(jù)綁定。
被該注解修飾的方法會有一個形參WebDataBinder,可以幫我們將request請求中的參數(shù)處理綁定到JavaBean中。
二. 前期準(zhǔn)備import lombok.Data;
import java.math.BigDecimal;
import java.util.Date;
@Data
public class Test16Form {private String name;
private String sex;
private Date birthday;
private BigDecimal money;
}
三. Get請求 + URL傳值處理
3.1 前臺-test16.htmlTitle
3.2 Controller層import org.springframework.beans.propertyeditors.CustomDateEditor;
import org.springframework.beans.propertyeditors.StringTrimmerEditor;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.WebDataBinder;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.servlet.ModelAndView;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
@Controller
@RequestMapping("/test16")
public class Test16Controller {@InitBinder
public void formBinder(WebDataBinder binder) {// 只要是String類型,就去除字符串前后的空格
binder.registerCustomEditor(String.class, new StringTrimmerEditor(true));
// 只有當(dāng)屬性名為birthday且為Date類型的才使用使用框架自帶的CustomDateEditor編輯器將String處理為Date
DateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
binder.registerCustomEditor(Date.class, "birthday", new CustomDateEditor(df, true));
}
@GetMapping("/init")
public ModelAndView init() {ModelAndView modelAndView = new ModelAndView();
modelAndView.setViewName("test16");
return modelAndView;
}
@GetMapping("/receiveGet")
@ResponseBody
public void receiveGet(Test16Form form) {System.out.println(form);
}
}
3.3 效果form對應(yīng)的屬性名[下標(biāo)].實體類屬性名
這種方式準(zhǔn)備數(shù)據(jù)Title
4.2 form實體類import lombok.Data;
import java.math.BigDecimal;
import java.util.Date;
import java.util.List;
@Data
public class Test16Form {private String name;
private String sex;
// 待轉(zhuǎn)換類型
private Date birthday;
private BigDecimal money;
private ListtableList;
}
import lombok.Data;
import java.util.Date;
@Data
public class Test4Entity {private String id;
private String address;
private String hobby;
// 待轉(zhuǎn)換類型
private Date workDate;
}
4.3 Controller層import org.springframework.beans.propertyeditors.StringTrimmerEditor;
import org.springframework.stereotype.Controller;
import org.springframework.util.ObjectUtils;
import org.springframework.web.bind.WebDataBinder;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.servlet.ModelAndView;
import java.beans.PropertyEditorSupport;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
@Controller
@RequestMapping("/test16")
public class Test16Controller {@InitBinder
public void formBinder(WebDataBinder binder) {// 只要是String類型,就去除字符串前后的空格
binder.registerCustomEditor(String.class, new StringTrimmerEditor(true));
// 自定義日期轉(zhuǎn)換屬性處理器
binder.registerCustomEditor(Date.class, new PropertyEditorSupport() {@Override
public void setAsText(String dateStr) {DateFormat dateFormat = null;
try {if (ObjectUtils.isEmpty(dateStr)) {setValue(dateStr);
return;
}
// yyyy-MM-dd HH:mm:ss格式
if (dateStr.matches("^\\d{4}-\\d{1,2}-\\d{1,2} {1}\\d{1,2}:\\d{1,2}:\\d{1,2}$")) {dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
}
// yyyy年MM月dd日 HH:mm:ss格式
else if (dateStr.matches("^\\d{4}年\\d{1,2}月\\d{1,2}日 {1}\\d{1,2}:\\d{1,2}:\\d{1,2}$")) {dateFormat = new SimpleDateFormat("yyyy年MM月dd日 HH:mm:ss");
}
if (ObjectUtils.isEmpty(dateFormat)) {setValue(null);
return;
}
Date parse = dateFormat.parse(dateStr);
setValue(parse);
} catch (Exception ex) {setValue(null);
}
}
});
}
@GetMapping("/init")
public ModelAndView init() {ModelAndView modelAndView = new ModelAndView();
modelAndView.setViewName("test16");
return modelAndView;
}
@PostMapping("/receivePost")
@ResponseBody
public void receivePost(Test16Form form) {System.out.println(form);
}
}
4.4 效果import org.springframework.util.ObjectUtils;
import java.beans.PropertyEditorSupport;
import java.util.Arrays;
import java.util.List;
public class SexPropertyEditor extends PropertyEditorSupport {private final static ListsexList = Arrays.asList("男", "女");
@Override
public void setAsText(String sex) {// 當(dāng)性別為空或者不是男或女的時候,默認(rèn)設(shè)置為男性
if(ObjectUtils.isEmpty(sex) || !sexList.contains(sex)) {setValue("男");
return;
}
setValue(sex);
}
}
5.2 自定義StringToListPropertyEditorimport org.springframework.util.ObjectUtils;
import java.beans.PropertyEditorSupport;
public class StringToListPropertyEditor extends PropertyEditorSupport {@Override
public void setAsText(String text){if (ObjectUtils.isEmpty(text) || !text.contains("-")) {setValue(text);
return;
}
setValue(text.split("-"));
}
}
5.3 form實體類import lombok.Data;
@Data
public class Test16Form01 {private String sex;
private String[] numList;
private String[] addList;
}
5.4 前端const url = `/test16/receiveNumListAndSex?sex=不明&numList=1-2-3&addList=4-5-6`;
$.ajax({url,
type: 'GET',
success: function (data, status, xhr) {console.log(data);
}
});
5.5 Controller層@Controller
@RequestMapping("/test16")
public class Test16Controller {@InitBinder
public void formBinder(WebDataBinder binder) {// 當(dāng)數(shù)據(jù)類型為String[],且 屬性名為 numList 的時候才會起作用
// 雖然addList也是String[]格式的數(shù)據(jù),但是我們并沒有指定轉(zhuǎn)換此屬性
binder.registerCustomEditor(String[].class, "numList", new StringToListPropertyEditor());
// 當(dāng)數(shù)據(jù)類型為String 且 屬性名為 sex 的時候才會起作用
binder.registerCustomEditor(String.class, "sex", new SexPropertyEditor());
}
@GetMapping("/receiveNumListAndSex")
@ResponseBody
public void receiveNumList(Test16Form01 form) {System.out.println(form);
}
}
5.6 效果六. 多個@InitBinder注解修飾的方法import com.example.jmw.common.bindEditor.SexPropertyEditor;
import com.example.jmw.common.bindEditor.StringToListPropertyEditor;
import org.springframework.beans.propertyeditors.StringTrimmerEditor;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.WebDataBinder;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.servlet.ModelAndView;
@Controller
@RequestMapping("/test16")
public class Test16Controller {// 注解沒有添加value值,每個請求都會走此方法
@InitBinder
public void init(WebDataBinder binder) {binder.registerCustomEditor(String.class, new StringTrimmerEditor(true));
}
// 指定只有參數(shù)名稱為test16Form01的,才會走此方法
@InitBinder("test16Form01")
public void formBinder(WebDataBinder binder) {// 當(dāng)數(shù)據(jù)類型為String 且 屬性名為 sex 的時候才會起作用
binder.registerCustomEditor(String.class, "sex", new SexPropertyEditor());
}
// 指定只有參數(shù)名稱為test16Form的,才會走此方法
@InitBinder("test16Form")
public void receiveGetBinder(WebDataBinder binder) {// 當(dāng)數(shù)據(jù)類型為String[],且 屬性名為 numList 的時候才會起作用
binder.registerCustomEditor(String[].class, "numList", new StringToListPropertyEditor());
}
@GetMapping("/receiveGet")
@ResponseBody
public void receiveGet(Test16Form form) {System.out.println(form);
}
@GetMapping("/receiveNumListAndSex")
@ResponseBody
public void receiveNumList(Test16Form01 form) {System.out.println(form);
}
}
七. 其他用法你是否還在尋找穩(wěn)定的海外服務(wù)器提供商?創(chuàng)新互聯(lián)www.cdcxhl.cn海外機(jī)房具備T級流量清洗系統(tǒng)配攻擊溯源,準(zhǔn)確流量調(diào)度確保服務(wù)器高可用性,企業(yè)級服務(wù)器適合批量采購,新人活動首月15元起,快前往官網(wǎng)查看詳情吧
網(wǎng)站題目:SpringBoot@InitBinder注解綁定請求參數(shù)-創(chuàng)新互聯(lián)
地址分享:http://jinyejixie.com/article32/cceipc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供面包屑導(dǎo)航、網(wǎng)站制作、App設(shè)計、微信公眾號、網(wǎng)站收錄、用戶體驗
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容