国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JSP > 正文

Spring注入Date類型的三種方法總結

2024-09-05 00:23:29
字體:
來源:轉載
供稿:網(wǎng)友

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:創(chuàng)建一個類 重寫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());   } } 

如有疑問請留言或者到本站社區(qū)交流討論,感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!


注:相關教程知識閱讀請移步到JSP教程頻道。
發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 新乐市| 曲水县| 军事| 西乡县| 古田县| 呼图壁县| 麻城市| 永州市| 永城市| 桃园县| 灵丘县| 沾化县| 邮箱| 湘阴县| 察雅县| 孟村| 津南区| 赤城县| 微博| 许昌市| 秭归县| 巢湖市| 朝阳市| 屏东市| 甘孜县| 和林格尔县| 安新县| 德昌县| 恭城| 和龙市| 五指山市| 海盐县| 运城市| 铁岭市| 油尖旺区| 临海市| 巴彦县| 年辖:市辖区| 竹山县| 曲水县| 华坪县|