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://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,再轉換類型
<?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轉換為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:先用一個類重寫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://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:創建一個類 重寫propertyeditorsupport的setastext方法 --> <!-- 自定義日期編輯器 --> <bean class="org.springframework.beans.factory.config.customeditorconfigurer"> <property name="customeditors"> <!--需要編輯的屬性類型,是一個map --> <map> <entry key="java.util.date"> <bean class="com.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()); } }
如有疑問請留言或者到本站社區交流討論,感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!
相關文章
- jsp+servlet實現文件上傳與下載功能
- EJB3.0部署消息驅動Bean拋javax.naming.NameNotFoundException異常
- 在JSP中使用formatNumber控制要顯示的小數位數方法
- 秒殺系統Web層設計的實現方法
- 將properties文件的配置設置為整個Web應用的全局變量實現方法
- JSP使用過濾器防止Xss漏洞
- 在JSP頁面中動態生成圖片驗證碼的方法實例
- 詳解JSP 內置對象request常見用法
- 使用IDEA編寫jsp時EL表達式不起作用的問題及解決方法
- jsp實現局部刷新頁面、異步加載頁面的方法
- Jsp中request的3個基礎實踐
- JavaServlet的文件上傳和下載實現方法
- JSP頁面的靜態包含和動態包含使用方法