spring 内建的PropertyEditor实现

1.属性编辑器主要应用在以下两个方面:
    * 使用PropertyEditors设置Bean属性。当你在XML文件中声明的bean的属性类型为java.lang.String时,Spring将使用ClassEditor将String解析成Class对象(如果setter方法需要一个Class参数的话)。
    * 在Spring MVC架构中使用各种PropertyEditors来解析HTTP请求中的参数。你可以用各种CommandController的子类来进行手工绑定。
2.内建的PropertyEditors

你可能感兴趣的:(spring,bean,mvc,xml,Blog)