使用XML来装配集合
我们使用新的domain类来描述一张唱片,里面加入了track。
package soundSystem; import java.util.List; public class BlankDisc implements CompactDisc{ private String title; private String artist; private List<String> tracks; public BlankDisc(String title, String artist, List<String> tracks) { this.title = title; this.artist = artist; this.tracks = tracks; } public void play() { System.out.println("Playing " + title + " by " + artist); System.out.println("--------track------"); tracks.forEach(System.out::println); } }<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:c="http://www.springframework.org/schema/c" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"> <bean id="compactDisc" class="soundSystem.BlankDisc"> <constructor-arg value="Sgt. Pepper's"/> <constructor-arg value="The Beatles"/> <constructor-arg> <list> <value>Sgt. Pepper</value> <value>with a little help</value> </list> </constructor-arg> </bean> <bean id="cdPlayer" class="soundSystem.CDPlayer" c:input-ref="compactDisc"/> </beans>使用XML配置了一个List,这是使用c标签所无法做到的事情。
这篇博客展示了如何在Java中使用XML配置文件来创建一个`BlankDisc`实例,该实例代表一张唱片,包含专辑名、艺术家和曲目列表。通过Spring框架的XML配置,实现了`CompactDisc`接口的`BlankDisc`类,并为`CDPlayer`类注入了唱片实例。XML配置文件中的`<constructor-arg>`标签用于设置`BlankDisc`的构造参数,包括专辑标题、艺术家和曲目列表。
3063

被折叠的 条评论
为什么被折叠?



