精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

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()); 
  } 
} 

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

相關文章