JavaEE笔记(九)
生活随笔
收集整理的這篇文章主要介紹了
JavaEE笔记(九)
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
List、Map、Set的配置
bean
package com.spring.bean;import java.util.List; import java.util.Map; import java.util.Set;public class People {private String name; // 姓名private Set<City> cities; // 去過的城市private List<Examine> examines; // 考核成績private Map<String,Job> jobs;// 工作職位public String getName() {return name;}public void setName(String name) {this.name = name;}public Set<City> getCities() {return cities;}public void setCities(Set<City> cities) {this.cities = cities;}public List<Examine> getExamines() {return examines;}public void setExamines(List<Examine> examines) {this.examines = examines;}public Map<String, Job> getJobs() {return jobs;}public void setJobs(Map<String, Job> jobs) {this.jobs = jobs;}@Overridepublic String toString() {return "People [name=" + name + ", cities=" + cities + ", examines="+ examines + ", jobs=" + jobs + "]";}}xml
<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://www.springframework.org/schema/beanshttp://www.springframework.org/schema/beans/spring-beans.xsd"><bean id="people" class="com.spring.bean.People"><property name="name" value="高酋" /><property name="cities"><set value-type="com.spring.bean.City"><ref bean="city_1" /><ref bean="city_2" /></set></property><property name="examines"><list value-type="com.spring.bean.Examine"><ref bean="examine_1" /><ref bean="examine_2" /><ref bean="examine_3" /></list></property><property name="jobs"><map key-type="java.lang.String" value-type="com.spring.bean.Job"><entry><key><value>職位一</value></key><ref bean="job_1" /></entry><entry><key><value>職位二</value></key><ref bean="job_2" /></entry></map></property></bean><!-- city bean --><bean id="city_1" class="com.spring.bean.City"><property name="name" value="四川" /></bean><bean id="city_2" class="com.spring.bean.City"><property name="name" value="北京" /></bean><!-- examine bean --><bean id="examine_1" class="com.spring.bean.Examine"><property name="score" value="79" /></bean><bean id="examine_2" class="com.spring.bean.Examine"><property name="score" value="67" /></bean><bean id="examine_3" class="com.spring.bean.Examine"><property name="score" value="81" /></bean><!-- job bean --><bean id="job_1" class="com.spring.bean.Job"><property name="name" value="廚師" /></bean><bean id="job_2" class="com.spring.bean.Job"><property name="name" value="維修師" /></bean> </beans>?
轉載于:https://www.cnblogs.com/HackerBlog/p/6139643.html
總結
以上是生活随笔為你收集整理的JavaEE笔记(九)的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 在linux上一行代码不用写实现自动采集
- 下一篇: Tomcat启动报错整理