react 前端框架如何驱动企业数字化转型与创新发展
602
2023-07-08
SpringMVC自定义参数绑定实现详解
一、概述
1.3 参数绑定过程
1.2 @RequestParam
如果request请求的参数名和controller方法的形参数名称一致,适配器自动进行参数绑定。如果不一致可以通过 @RequestParam 指定request请求的参数名绑定到哪个方法形参上。
对于必须要传的参数,通过@RequestParam中属性required设置为true,如果不传此参数则报错。
对于有些参数如果不传入,还需要设置默认值,使用@RequestParam中属性defaultvalue设置默认值。
可以绑定简单类型:整型、字符串、单精/双精度、日期、布尔型。
可以绑定简单pojo类型
简单pojo类型只包括简单类型的属性。
绑定过程:request请求的参数名称和pojo的属性名一致,就可以绑定成功。
问题:
如果controller方法形参中有多个pojo且pojo中有重复的属性,使用简单pojo绑定无法有针对性的绑定,
比如:方法形参有items和User,pojo同时存在name属性,从http请求过程的name无法有针对性的绑定到items或user。
二、自定义绑定使用属性编辑器
springmvc没有提供默认的对日期类型的绑定,需要自定义日期类型的绑定。
2.1 使用WebDataBinder(了解)
在controller类中定义:
//自定义属性编辑器
// @InitBinder
// public void initBinder(WebDataBinder binder) throws Exception {
// // Date.class必须是与controler方法形参pojo属性一致的date类型,这里是java.util.Date
// binder.registerCustomEditor(Date.class, new CustomDateEditor(
// new SimpleDateFormat("yyyy-MM-dd HH-mm-ss"), true));
// }
使用这种方法问题是无法在多个controller共用。
2.2 使用WebBindingInitializer(了解)
使用WebBindingInitializer让多个controller共用 属性编辑器。
自定义WebBindingInitializer,注入到处理器适配器中。
如果想多个controller需要共同注册相同的属性编辑器,可以实现PropertyEditorRegistrar接口,并注入webBindingInitializer中。
public class CustomPropertyEditor implements PropertyEditorRegistrar {
@Override
public void registerCustomEditors(PropertyEditorRegistry binder) {
binder.registerCustomEditor(Date.class, new CustomDateEditor(
new SimpleDateFormat("yyyy-bXfjgVQmmHMM-dd HH-mm-ss"), true))http://;
}
}
配置如下:
class="com.hao.ssm.controller.propertyeditor.CustomPropertyEditor">
class="com.hao.ssm.controller.propertyeditor.CustomPropertyEditor">
class="org.springframework.web.bind.support.ConfigurableWebBindingInitializer">
class="org.springframework.web.bind.support.ConfigurableWebBindingInitializer">
class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter">
class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter">
三、自定义参数绑定使用转换器
3.1 实现Converter接口
定义日期类型转换器和字符串去除前后空格转换器。
public class CustomDateConverter implements Converter
@Override
public Date convert(String source) {
try {
//进行日期转换
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 {
//去掉字符串两边空格,如果去除后为空设置为null
if(source!=null){
source = source.trim();
if(source.equals("")){
return null;
}
}
} catch (Exception e) {
e.printStackTrace();
}
return source;
}
}
3.2 配置转换器
class="org.springframework.format.support.FormattingConversionServiceFactoryBean">
class="org.springframework.format.support.FormattingConversionServiceFactoryBean">
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~