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

  • 相关阅读:
    Linux命令_2
    Calling startActivity() from outside of an Activity context requires the FLAG_ACTIVITY_NEW_TASK flag.
    壁纸目录
    ubuntu 解决“无法获得锁 /var/lib/dpkg/lock -open (11:资源暂时不可用)”的方法
    Oracle VM VirtulBox 安装Ubuntu16.04
    Linux 中文输入法安装
    Android LayoutInflater 相关知识
    Linux命令_1
    青蛙跳杯子
    横向打印二叉树
  • 原文地址:https://www.cnblogs.com/lexus/p/2438922.html
Copyright © 2011-2022 走看看