zoukankan      html  css  js  c++  java
  • Fill Value To List : XML Bean Property « Spring « Java

    Fill Value To List : XML Bean Property « Spring « Java

    ill Value To List

           
    File: context.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN"
        "http://www.springframework.org/dtd/spring-beans.dtd">

    <beans>

      <bean id="collectionsExample" class="CollectionsBean">
        
        <property name="theList">
          <list>
            <value>red</value>
            <value>red</value>
            <value>blue</value>

          </list>
        </property>

      </bean>
      
      <bean id="curDate" class="java.util.GregorianCalendar"/>
      
    </beans>


    File: Main.java

    import java.util.List;
    import java.util.Map;
    import java.util.Properties;
    import java.util.Set;

    import org.springframework.context.ApplicationContext;
    import org.springframework.context.support.ClassPathXmlApplicationContext;

    class Main {
      public static void main(String args[]) throws Exception {
        ApplicationContext ctx = new ClassPathXmlApplicationContext("context.xml");
        
        
        CollectionsBean example = (CollectionsBeanctx.getBean("collectionsExample");
       System.out.println(example.getTheList());
      
      }
    }
    class CollectionsBean {
      
      private List theList;
      private Set theSet;
      private Map theMap;
      private Properties theProperties;
      
      public void setTheList(List theList) {
        this.theList = theList;
      }
      public List getTheList() {
        return theList;
      }
      
      public void setTheSet(Set theSet) {
        this.theSet = theSet;
      }
      public Set getTheSet() {
        return theSet;
      }
      
      public void setTheMap(Map theMap) {
        this.theMap = theMap;
      }
      public Map getTheMap() {
        return theMap;
      }
      
      public void setTheProperties(Properties theProperties) {
        this.theProperties = theProperties;
      }
      public Properties getTheProperties() {
        return theProperties;
      }
    }

  • 相关阅读:
    C++ 重载运算符
    线段树
    矩阵的构造
    矩阵快速幂
    Fibnoccia 数列简单题
    权值线段树
    .net System.Net.Mail 之用SmtpClient发送邮件Demo
    poj-3087 Shuffle'm Up
    hdu-1548 A strange lift
    scu-4440 rectangle (非原创)
  • 原文地址:https://www.cnblogs.com/lexus/p/2438922.html
Copyright © 2011-2022 走看看