溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

如何理解Spring自定義屬性編輯器

發(fā)布時間:2021-10-27 09:49:43 來源:億速云 閱讀:126 作者:柒染 欄目:編程語言

如何理解Spring自定義屬性編輯器,針對這個問題,這篇文章詳細(xì)介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

Spring 自定義屬性編輯器

Spring DI注入的時候可以把普通屬性注入進(jìn)來,但是像Date類型的就無法被識別。這時可以通過Spring的屬性編輯器把配置文件中的字符串轉(zhuǎn)化成相應(yīng)的對象進(jìn)行注入。

Spring有自帶的屬性編輯器,我們也可以寫自定義的屬性編輯器

自定義屬性編輯器:

繼承java.beans.PropertyEditorSupport類,重寫其中的setAsText(String text)方法。

再把自定義的屬性編輯器注入到Spring中。

例子:

JavaBean類

Java代碼

package com.cos.entity;         import java.util.Date;     import java.util.List;     import java.util.Map;     import java.util.Set;         public class UserBean {             private Date birthday;             public Date getBirthday() {             return birthday;         }             public void setBirthday(Date birthday) {             this.birthday = birthday;         }     }

自定義屬性編輯器

Java代碼

package com.cos.entity;         import java.beans.PropertyEditorSupport;     import java.text.ParseException;     import java.text.SimpleDateFormat;         //自己寫一個自定義屬性編輯器來繼承屬性編輯器PropertyEditorSupport     public class DatePropertyEditor extends PropertyEditorSupport {             //時間的格式         String format;             public String getFormat() {             return format;         }             public void setFormat(String format) {             this.format = format;         }             //需要重寫屬性編輯器的setAsText()方法         @Override        public void setAsText(String text) {             try {                 SimpleDateFormat f = new SimpleDateFormat(format);                 //把轉(zhuǎn)換后的值傳進(jìn)去                 this.setValue(f.parse(text));             } catch (ParseException ex) {                 ex.printStackTrace();             }         }     }

spring配置文件 applicationContext.xml :

Xml代碼

<beans xmlns="http://www.springframework.org/schema/beans"        xmlns:jdbc="http://www.springframework.org/schema/jdbc"        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             http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.0.xsd">            <!-- 普通屬性注入 -->        <bean id="userBean" class="com.cos.entity.UserBean">            <!-- 時間屬性,需要屬性編輯器 -->            <property name="birthday" value="2011-03-16"/>        </bean>            <!-- 特殊屬性的注入.把特殊屬性注入到CustomEditorConfigurer Bean 里 -->        <bean class="org.springframework.beans.factory.config.CustomEditorConfigurer">            <property name="customEditors">                <map>                    <entry key="java.util.Date">                        <bean class="com.cos.entity.DatePropertyEditor">                            <property name="format" value="yyyy-MM-dd"/>                        </bean>                    </entry>                </map>            </property>        </bean>    </beans>

 

org.springframework.beans.factory.config.CustomEditorConfigurer類可以讀取PropertyEditorSupport類及子類,將字符串轉(zhuǎn)化為指定的類型。

PropertyEditorSupport類把要轉(zhuǎn)化的Date類型注入到customEditors Map中。

測試類:

Java代碼

package com.cos.entity;         import org.springframework.beans.factory.BeanFactory;     import org.springframework.context.support.ClassPathXmlApplicationContext;         public class Main {             public static void main(String[] args) {             //通過spring配置文件返回Bean的工廠對象             BeanFactory factory = new ClassPathXmlApplicationContext("applicationContext.xml");             //Bean工廠通過Bean的id得到JavaBean             UserBean ub = (UserBean) factory.getBean("userBean");             System.out.println(""+ub.getBirthday());         }     }

關(guān)于如何理解Spring自定義屬性編輯器問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI