没什么JAVA BEAN基础,看了看spring的beanwrapper
大概了解了propertyEditor的工作方式,主要关注convert string to object
记下来,省得用到时再乱找
步聚:
1,写出你要转换的bean及对应的propertyEditor(如:Person=>PersonEditor)
2,用PropertyEditorManager注册:
java代码: |
PropertyEditorManager.registerEditor(Person.class,PersonEditor.class) |
3,你得到一个要转换的string,查出想转换成的bean对映的propertyEditor
如:
java代码: |
PropertyEditorManager.findEditor(Person.class) |
4,你知道啦,调用你找到的editor的setAsText(String)
如:
java代码: |
editor.setAsText("23,liunix"); |
5,在你属性宿主bean上调用setter
如:
java代码: |
personManager.setPerson((Person)editor.getValue()) |
ok!
另外,可以省去PropertyEditorManager.registerEditor注册方法有
1,
你要转换的bean及对应的propertyEditor在同一个包内,而且名字形如:Person=>Person+Editor来定义两个类的名字,
2,名称对应,不在一个包内
调用PropertyEditorManager.setEditorSearchPath(String[])
其中string[]指定你editor的包名即可
posted on 2006-02-14 13:04
liunix 阅读(450)
评论(0) 编辑 收藏 所属分类:
spring