博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SpringMvc-PropertyEditor接口和@InitBinder注解
阅读量:4303 次
发布时间:2019-05-27

本文共 1003 字,大约阅读时间需要 3 分钟。

1.自己定义一个类,这个类实现PropertyEditor接口,其实就是实现这个接口中的setAsText和getValue

–1.1 springmvc会调用setAsText方法将request中对应的值传递进去
–1.2 springmvc会调用getValue方法,将拿到的值赋值到controller中的form实体类中

下面实例显示的是无论前台传递什么参数,最终User的name都是"小刚"

public class MyStringPropertyEditor implements PropertyEditor{	@Override	public Object getValue() {		return "小刚";	}	@Override	public void setAsText(String text) throws IllegalArgumentException {		System.out.println("request中传递过来的值:"+text);	}	//省略其他Override方法}

controller

@Controller@RequestMapping("initbinder")public class Controller {	@InitBinder	public void aa(WebDataBinder binder) {		MyStringPropertyEditor sdf=new MyStringPropertyEditor();		//表示User121中如果是String类型,就用MyStringPropertyEditor属性编辑器		binder.registerCustomEditor(String.class, sdf);	}		@ResponseBody	@RequestMapping("test")	public String aa(User121 user) {		//无论URL传递什么,此处都会打印"小刚"		System.out.println("controller:"+user.getName());		return "GG";	}}

URL中虽然写的是周传雄,但是进入到controller中,依然变成了小刚

http://localhost:8080/initbinder/test?name=周传雄

转载地址:http://lthws.baihongyu.com/

你可能感兴趣的文章
获取推送通知的DeviceToken
查看>>
Could not find a storyboard named 'Main' in bundle NSBundle
查看>>
CocoaPods安装和使用教程
查看>>
Beginning Auto Layout Tutorial
查看>>
block使用小结、在arc中使用block、如何防止循环引用
查看>>
iPhone开发学习笔记002——Xib设计UITableViewCell然后动态加载
查看>>
iOS开发中遇到的问题整理 (一)
查看>>
Swift code into Object-C 出现 ***-swift have not found this file 的问题
查看>>
为什么你的App介绍写得像一坨翔?
查看>>
RTImageAssets插件--@3x可自动生成@2x图片
查看>>
iOS开发的一些奇巧淫技
查看>>
常浏览的博客和网站
查看>>
Xcode 工程文件打开不出来, cannot be opened because the project file cannot be parsed.
查看>>
iOS在Xcode6中怎么创建OC category文件
查看>>
5、JavaWeb学习之基础篇—标签(自定义&JSTL)
查看>>
8、JavaWEB学习之基础篇—文件上传&下载
查看>>
reRender属性的使用
查看>>
href="javascript:void(0)"
查看>>
h:panelGrid、h:panelGroup标签学习
查看>>
f:facet标签 的用法
查看>>