Spring注入Date類型的三種方法總結(jié)
spring注入date類型的三種方法總結(jié)
測(cè)試bean:
public class datebean { private date birthday; public date getbirthday() { return birthday; } public void setbirthday(date birthday) { this.birthday = birthday; } }
方式1:利用simpledateformat的構(gòu)造方法注入
<?xml version="1.0" encoding="utf-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:p="http://www.springframework.org/schema/p" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xsi:schemalocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"> <bean id="dateformat" class="java.text.simpledateformat"> <constructor-arg value="yyyy-mm-dd" /> </bean> <bean id="datebean" class="com.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,再轉(zhuǎn)換類型
<?xml version="1.0" encoding="utf-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:p="http://www.springframework.org/schema/p" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xsi:schemalocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"> <!-- 自定義日期編輯器 --> <bean id="dateeditor" class="org.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轉(zhuǎn)換為java.util.date --> <bean class="org.springframework.beans.factory.config.customeditorconfigurer"> <property name="customeditors"> <map> <entry key="java.util.date"> <ref bean="dateeditor" /> </entry> </map> </property> </bean> </beans>
方式3:先用一個(gè)類重寫propertyeditorsupport的setastext方法,再在配置文件中,配置轉(zhuǎn)換類型就可以了,跟上面方法類似
public class mydatepropertyeditor extends propertyeditorsupport { private string format; public string getformat() { return format; } public void setformat(string format) { this.format = format; } // text為需要轉(zhuǎn)換的值,當(dāng)為bean注入的類型與編輯器轉(zhuǎn)換的類型匹配時(shí)就會(huì)交給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://www.springframework.org/schema/beans" xmlns:p="http://www.springframework.org/schema/p" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xsi:schemalocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"> <!--方式3:創(chuàng)建一個(gè)類 重寫propertyeditorsupport的setastext方法 --> <!-- 自定義日期編輯器 --> <bean class="org.springframework.beans.factory.config.customeditorconfigurer"> <property name="customeditors"> <!--需要編輯的屬性類型,是一個(gè)map --> <map> <entry key="java.util.date"> <bean class="com.springdemo1.date類型注入.mydatepropertyeditor"> <property name="format" value="yyyy-mm-dd" /> <!--注入需要轉(zhuǎn)換的格式 --> </bean> </entry> </map> </property> </bean> </beans>
測(cè)試:
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()); } }
如有疑問請(qǐng)留言或者到本站社區(qū)交流討論,感謝閱讀,希望能幫助到大家,謝謝大家對(duì)本站的支持!
相關(guān)文章
- jsp+servlet實(shí)現(xiàn)文件上傳與下載功能
- EJB3.0部署消息驅(qū)動(dòng)Bean拋javax.naming.NameNotFoundException異常
- 在JSP中使用formatNumber控制要顯示的小數(shù)位數(shù)方法
- 秒殺系統(tǒng)Web層設(shè)計(jì)的實(shí)現(xiàn)方法
- 將properties文件的配置設(shè)置為整個(gè)Web應(yīng)用的全局變量實(shí)現(xiàn)方法
- JSP使用過濾器防止Xss漏洞
- 在JSP頁(yè)面中動(dòng)態(tài)生成圖片驗(yàn)證碼的方法實(shí)例
- 詳解JSP 內(nèi)置對(duì)象request常見用法
- 使用IDEA編寫jsp時(shí)EL表達(dá)式不起作用的問題及解決方法
- jsp實(shí)現(xiàn)局部刷新頁(yè)面、異步加載頁(yè)面的方法
- Jsp中request的3個(gè)基礎(chǔ)實(shí)踐
- JavaServlet的文件上傳和下載實(shí)現(xiàn)方法
- JSP頁(yè)面的靜態(tài)包含和動(dòng)態(tài)包含使用方法