Spring注入Date类型的三种方法总结
网络编程 2021-07-05 11:23www.168986.cn编程入门
这篇文章主要介绍了Spring注入Date类型的三种方法的相关资料,希望通过本文能帮助到大家,让大家掌握这几种方法,需要的朋友可以参考下
Spring注入Date类型的三种方法
测试Bean
public class DateBean { private Date birthday; public Date getBirthday() { return birthday; } public void setBirthday(Date birthday) { this.birthday = birthday; } }
方式1利用SimpleDateFormat的构造方法注入
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://.springframework./schema/beans" xmlns:p="http://.springframework./schema/p" xmlns:xsi="http://.w3./2001/XMLSchema-instance" xsi:schemaLocation=" http://.springframework./schema/beans http://.springframework./schema/beans/spring-beans.xsd"> <bean id="dateFormat" class="java.text.SimpleDateFormat"> <constructor-arg value="yyyy-MM-dd" /> </bean> <bean id="datebean" class=".springDemo1.Date类型注入.DateBean"> <property name="birthday"> <bean factory-bean="dateFormat" factory-method="parse"> <constructor-arg value="2015-12-31" /> </bean> </property> </bean> </beans>
方式2纯配置,先自定义CustomDateEditor,再转换类型
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://.springframework./schema/beans" xmlns:p="http://.springframework./schema/p" xmlns:xsi="http://.w3./2001/XMLSchema-instance" xsi:schemaLocation=" http://.springframework./schema/beans http://.springframework./schema/beans/spring-beans.xsd"> <!-- 自定义日期编辑器 --> <bean id="dateEditor" class=".springframework.beans.propertyeditors.CustomDateEditor"> <constructor-arg> <bean class="java.text.SimpleDateFormat"> <constructor-arg value="yyyy-MM-dd"></constructor-arg> </bean> </constructor-arg> <constructor-arg value="true" /> </bean> <!-- 使 Spring转换为java.util.Date --> <bean class=".springframework.beans.factory.config.CustomEditorConfigurer"> <property name="customEditors"> <map> <entry key="java.util.Date"> <ref bean="dateEditor" /> </entry> </map> </property> </bean> </beans>
方式3先用一个类重写PropertyEditorSupport的setAsText方法,再在配置文件中,配置转换类型就可以了,跟上面方法类似
public class MyDatePropertyEditor extends PropertyEditorSupport { private String format; public String getFormat() { return format; } public void setFormat(String format) { this.format = format; } // text为需要转换的值,当为bean注入的类型与编辑器转换的类型匹配时就会交给setAsText方法处理 public void setAsText(String text) throws IllegalArgumentException { SimpleDateFormat sdf = new SimpleDateFormat(format); try { this.setValue(sdf.parse(text)); } catch (ParseException e) { e.printStackTrace(); } } }
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://.springframework./schema/beans" xmlns:p="http://.springframework./schema/p" xmlns:xsi="http://.w3./2001/XMLSchema-instance" xsi:schemaLocation=" http://.springframework./schema/beans http://.springframework./schema/beans/spring-beans.xsd"> <!--方式3创建一个类 重写PropertyEditorSupport的setAsText方法 --> <!-- 自定义日期编辑器 --> <bean class=".springframework.beans.factory.config.CustomEditorConfigurer"> <property name="customEditors"> <!--需要编辑的属性类型,是一个map --> <map> <entry key="java.util.Date"> <bean class=".springDemo1.Date类型注入.MyDatePropertyEditor"> <property name="format" value="yyyy-MM-dd" /> <!--注入需要转换的格式 --> </bean> </entry> </map> </property> </bean> </beans>
测试
public class DateTest { @Test public void testName() throws Exception { ApplicationContext context = new ClassPathXmlApplicationContext( "applicationContext.xml"); DateBean bean = (DateBean) context.getBean("datebean"); System.out.println(bean.getBirthday()); } }
如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
编程语言
- 如何快速学会编程 如何快速学会ug编程
- 免费学编程的app 推荐12个免费学编程的好网站
- 电脑怎么编程:电脑怎么编程网咯游戏菜单图标
- 如何写代码新手教学 如何写代码新手教学手机
- 基础编程入门教程视频 基础编程入门教程视频华
- 编程演示:编程演示浦丰投针过程
- 乐高编程加盟 乐高积木编程加盟
- 跟我学plc编程 plc编程自学入门视频教程
- ug编程成航林总 ug编程实战视频
- 孩子学编程的好处和坏处
- 初学者学编程该从哪里开始 新手学编程从哪里入
- 慢走丝编程 慢走丝编程难学吗
- 国内十强少儿编程机构 中国少儿编程机构十强有
- 成人计算机速成培训班 成人计算机速成培训班办
- 孩子学编程网上课程哪家好 儿童学编程比较好的
- 代码编程教学入门软件 代码编程教程