Spring整理3 -- 自定义属性编辑器
程序员文章站
2022-05-26 17:53:21
...
在我们注入属性时,遇到是日期类型,如果按普通属性去注入,则会报错,那我们该怎么解决?解决办法:自定义属性编辑器。
什么是属性编辑器,作用?
自定义属性编辑器,spring配置文件中的字符串转换成相应的对象进行注入spring已经有内置的属性编辑器,我们可以根据需求自己定义属性编辑器。
步骤:
1、 定义一个属性编辑器必须继承java.beans.PropertyEditorSupport
2、 在配置文件配置上我们定义的属性编辑器
下面我们来做一个java.util.Date属性编辑器,代码如下:
定义一个属性编辑器UtilDatePropertyEditor:
/**
* java.util.Date属性编辑器
*/
public class UtilDatePropertyEditor extends PropertyEditorSupport {
private String format="yyyy-MM-dd";
@Override
public void setAsText(String text)
throws IllegalArgumentException {
SimpleDateFormat sdf = new SimpleDateFormat(format);
try {
Date d = sdf.parse(text);
this.setValue(d);
} catch (ParseException e) {
e.printStackTrace();
}
}
public void setFormat(String format) {
this.format = format;
}
}
配置文件applicationContext.xml
<!-- 定义属性编辑器 --> <bean id="customEditorConfigurer" class="org.springframework.beans.factory.config.CustomEditorConfigurer"> <property name="customEditors"> <map> <entry key="java.util.Date"> <bean class="spring.UtilDatePropertyEditor"> <property name="format" value="yyyy-MM-dd"/> </bean> </entry> </map> </property> </bean>
以后我们就可以为java.util.Date进行注入,和普通属性一样使用,测试代码(略)
上一篇: 最受欢迎的前K种水果
下一篇: spring中的自定义编辑器
推荐阅读
-
JSP自定义标签-标签属性_动力节点Java学院整理
-
IDEA开发spring boot应用时 application.yml 或 application.properties 自定义属性提示
-
浅谈Spring Boot 属性配置和自定义属性配置
-
SpringMVC自定义属性编辑器详解及实例
-
VB.NET自定义设计器之属性编辑器自定义
-
常用CSS3属性整理
-
JSP自定义标签-标签属性_动力节点Java学院整理
-
整理 W3CSchool 常用的CSS属性列表_html/css_WEB-ITnose
-
IDEA开发spring boot应用时 application.yml 或 application.properties 自定义属性提示
-
CocosCreator编辑器扩展3-自定义一个简单的面板