校园春色亚洲色图_亚洲视频分类_中文字幕精品一区二区精品_麻豆一区区三区四区产品精品蜜桃

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

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

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

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
復(fù)制代碼 代碼如下:

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
復(fù)制代碼 代碼如下:

?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
復(fù)制代碼 代碼如下:

?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
復(fù)制代碼 代碼如下:

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設(shè)計模式編程中的依賴倒置原則
  • 深入理解JavaScript系列(22):S.O.L.I.D五大原則之依賴倒置原則DIP詳解
  • PHP依賴倒置(Dependency Injection)代碼實例
  • Spring學(xué)習(xí)筆記1之IOC詳解盡量使用注解以及java代碼
  • 深入理解Java的Spring框架中的IOC容器
  • linux系統(tǒng)下一個冷門的RAID卡ioc0及其監(jiān)控mpt-status
  • Android應(yīng)用開發(fā)中控制反轉(zhuǎn)IoC設(shè)計模式使用教程
  • 淺析Java的Spring框架中IOC容器容器的應(yīng)用
  • C++中DeviceIoCteatol的用法實例
  • MVC使用Spring.Net應(yīng)用IOC(依賴倒置)學(xué)習(xí)筆記3

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

巨人網(wǎng)絡(luò)通訊聲明:本文標題《通過Setters方式對日期屬性及日期格式進行IOC注入》,本文關(guān)鍵詞  通過,Setters,方式,對,日期,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《通過Setters方式對日期屬性及日期格式進行IOC注入》相關(guān)的同類信息!
  • 本頁收集關(guān)于通過Setters方式對日期屬性及日期格式進行IOC注入的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章
    主站蜘蛛池模板: 延吉市| 林口县| 阳泉市| 伊宁市| 临澧县| 浮山县| 新巴尔虎左旗| 盖州市| 克拉玛依市| 阿城市| 都匀市| 宁武县| 澄迈县| 崇礼县| 社会| 开鲁县| 新巴尔虎右旗| 布尔津县| 额尔古纳市| 潢川县| 西乌珠穆沁旗| 和顺县| 丘北县| 浏阳市| 昌图县| 龙川县| 吴桥县| 宣威市| 北票市| 固始县| 丰顺县| 曲沃县| 长宁区| 淅川县| 威宁| 新民市| 科技| 惠来县| 巴中市| 新龙县| 噶尔县|