zoukankan      html  css  js  c++  java
  • spring双列

    public class MyCollection {
         private  String[]array;
         private List<String>list;
         private Set<String>set;
         Map<String,String>map;
         Properties properties;
        public String[] getArray() {
            return array;
        }
        public void setArray(String[] array) {
            this.array = array;
        }
        public List<String> getList() {
            return list;
        }
        public void setList(List<String> list) {
            this.list = list;
        }
        public Set<String> getSet() {
            return set;
        }
        public void setSet(Set<String> set) {
            this.set = set;
        }
        public Map<String, String> getMap() {
            return map;
        }
        public void setMap(Map<String, String> map) {
            this.map = map;
        }
        public Properties getProperties() {
            return properties;
        }
        public void setProperties(Properties properties) {
            this.properties = properties;
        }
    }

    <bean id="map" class="cn.happy.spring03xmldi.MyCollection">
    <property name="map">
        <map>
            <!-- map中的每一项entry=key+value  -->
            <entry key="1" value="11"></entry>
            <entry key="2" value="22"></entry>
            <entry key="3">
                <value>33</value>
            </entry>
        </map>
    </property>
    </bean>

    测试

    public void test02(){
    ApplicationContext ct= new ClassPathXmlApplicationContext("applicationContextspring03xmldl.xml");
     MyCollection collection=(MyCollection)ct.getBean("map");
     System.out.println(collection.getMap());
    }

  • 相关阅读:
    leetcode刷题16
    leetcode刷题15
    leetcode刷题14
    leetcode刷题13
    UnityWebReqest和WWW,请求web数据打包到Android手机上,报错 Unknown error记录
    Unable to instantiate prefab. Prefab may be broken.(Unity2018.2.2报错)
    Unity 2018.4.0 回退到 2018.2.2 出现错误日志修复
    Windows系统中,使用Protobuf,编译出C#文件
    Unity长按Button,显示消息盒子
    Mac 端 查找UnityEngine.dll和UnityEngine.UI.dll
  • 原文地址:https://www.cnblogs.com/wangdan123/p/7398846.html
Copyright © 2011-2022 走看看