摘要:
什么是属性编辑器,作用?* 自定义属性编辑器,spring配置文件中的字符串转换成相应的对象进行注入spring已经有内置的属性编辑器,我们可以根据需求自己定义属性编辑器* 如何定义属性编辑器?* 继承PropertyEditorSupport类,覆写setAsText()方法,参见:UtilDatePropertyEditor.java* 将属性编辑器注册到spring中,参见:applicationContext.xml比如:有一个类里面有一个Date属性Java代码publicclassBean1{privateDatedateValue;publicvoidsetDateValue(D 阅读全文
2013年2月24日 #