好湿?好紧?好多水好爽自慰,久久久噜久噜久久综合,成人做爰A片免费看黄冈,机机对机机30分钟无遮挡

主頁 > 知識庫 > 通過Setters方式對日期屬性及日期格式進行IOC注入

通過Setters方式對日期屬性及日期格式進行IOC注入

熱門標簽:智能電話機器人銷售話術 汝南縣地圖標注app 四川正規外呼系統軟件 福建電銷貓機器人收費 地圖標注專業和非專業 湖北地圖標注公司 山東ai外呼電銷機器人好用嗎 外呼直播語音系統 甘肅銷售電銷機器人公司
本實例中還涉及到Spring中采用多個配置文件,也涉及到對日期格式的注入-------更加靈活
Date屬性類: DatePropertyInjection.java
復制代碼 代碼如下:

package com.zhmg.spring;
import java.util.Date;
public class DatePropertyInjection {
private Date date;
public Date getDate() {
return date;
}
public void setDate(Date date) {
this.date = date;
}
}

屬性編輯器類:PropertyEditor.java
復制代碼 代碼如下:

package com.zhmg.spring;
import java.beans.PropertyEditorSupport;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
/**
* 自定義屬性編輯器處理java.util.Date類型的屬性
* @author Administrator
*
*/
public class PropertyEditor extends PropertyEditorSupport {
String format = "yyyy-MM-dd";
public void setFormat(String format) {
this.format = format;
}
@Override
public void setAsText(String arg0) throws IllegalArgumentException {
SimpleDateFormat dateFormat = new SimpleDateFormat(format);
try {
Date date = dateFormat.parse(arg0);
this.setValue(date);
} catch (ParseException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}

applicationContextBeans.xml
復制代碼 代碼如下:

?xml version="1.0" encoding="UTF-8"?>
beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd">
bean id="dateProperty" class="com.zhmg.spring.DatePropertyInjection">
property name="date">
value>2009-8-28/value>
/property>
/bean>
/beans>

applicationContextBeans.xml
復制代碼 代碼如下:

?xml version="1.0" encoding="UTF-8"?>
beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd">
!--
bean id="dateProperty" class="com.zhmg.spring.DatePropertyInjection">
property name="date">
value>2009-8-28/value>
/property>
/bean>
-->
bean id="editor" class="org.springframework.beans.factory.config.CustomEditorConfigurer">
property name="customEditors">
map>
entry key="java.util.Date">
bean class="com.zhmg.spring.PropertyEditor">
!—對日期格式注入-->
property name="format" value="yyyy-MM-dd"/>
/bean>
/entry>
/map>
/property>
/bean>
/beans>

測試單元:InjectionTest.java
復制代碼 代碼如下:

package com.zhmg.spring;
import junit.framework.TestCase;
import org.springframework.beans.factory.BeanFactory;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class InjectionTest extends TestCase {
BeanFactory factory;
protected void setUp() throws Exception {
//采用通配符的方式讀取所有以applicationContext開頭的配置文件
factory = new ClassPathXmlApplicationContext("applicationContext*.xml");
}
public void testInjection(){
DatePropertyInjection dateProp = (DatePropertyInjection)factory.getBean("dateProperty");
System.out.println("date=" + dateProp.getDate());
}
}
您可能感興趣的文章:
  • 詳解Java設計模式編程中的依賴倒置原則
  • 深入理解JavaScript系列(22):S.O.L.I.D五大原則之依賴倒置原則DIP詳解
  • PHP依賴倒置(Dependency Injection)代碼實例
  • Spring學習筆記1之IOC詳解盡量使用注解以及java代碼
  • 深入理解Java的Spring框架中的IOC容器
  • linux系統下一個冷門的RAID卡ioc0及其監控mpt-status
  • Android應用開發中控制反轉IoC設計模式使用教程
  • 淺析Java的Spring框架中IOC容器容器的應用
  • C++中DeviceIoCteatol的用法實例
  • MVC使用Spring.Net應用IOC(依賴倒置)學習筆記3

標簽:昌都 黔東 肇慶 梅州 南充 臨沂 吳忠 白銀

巨人網絡通訊聲明:本文標題《通過Setters方式對日期屬性及日期格式進行IOC注入》,本文關鍵詞  通過,Setters,方式,對,日期,;如發現本文內容存在版權問題,煩請提供相關信息告之我們,我們將及時溝通與處理。本站內容系統采集于網絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《通過Setters方式對日期屬性及日期格式進行IOC注入》相關的同類信息!
  • 本頁收集關于通過Setters方式對日期屬性及日期格式進行IOC注入的相關信息資訊供網民參考!
  • 推薦文章