【Spring 核心】装配bean(三)XML配置

前端之家收集整理的这篇文章主要介绍了【Spring 核心】装配bean(三)XML配置前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

项目包结构:

src/main/java

com.bonc.pojo--|-CompactDisc.java (接口)

|-SgtPeppers.java (实现类 实现 CompactDisc)

|-BlankDisc.java (实现类 实现 CompactDisc)

|-MediaPlayer.java (接口)

|-CDPlayer.java (实现类 实现 MediaPlayer)

src/main/resources

spring.xml (Spring应用上下文配置信息)

接口 CompactDisc.java

  1. package com.bonc.pojo;
  2.  
  3. public interface CompactDisc {
  4. void play();
  5. }

实现类 SgtPeppers.java
  1. package com.bonc.pojo;
  2.  
  3. public class SgtPeppers implements CompactDisc {
  4. private String title = "Sgt. Pepper's Lonely Hearts Club Band";
  5. private String artist = "The Beatles";
  6. public void play() {
  7. System.out.println("Playing "+title+"by"+artist);
  8. }
  9. public SgtPeppers() {
  10. super();
  11. }
  12. //自定义带参构造器
  13. public SgtPeppers(String title,String artist) {
  14. super();
  15. this.title = title;
  16. this.artist = artist;
  17. }
  18.  
  19. }
实现类 BlankDisc.java
  1. package com.bonc.pojo;
  2.  
  3. import java.util.List;
  4.  
  5. public class BlankDisc implements CompactDisc {
  6.  
  7. private String title;
  8. private String artist;
  9. private List<String> tracks;
  10. public void play() {
  11. System.out.println("Playing "+title+" by "+artist);
  12. for(String track:tracks){
  13. System.out.println("-Track: "+track);
  14. }
  15. }
  16. //自定义带参构造器
  17. public BlankDisc(String title,String artist,List<String> tracks) {
  18. super();
  19. this.title = title;
  20. this.artist = artist;
  21. this.tracks = tracks;
  22. }
  23. public String getTitle() {
  24. return title;
  25. }
  26. public void setTitle(String title) {
  27. this.title = title;
  28. }
  29. public String getArtist() {
  30. return artist;
  31. }
  32. public void setArtist(String artist) {
  33. this.artist = artist;
  34. }
  35. public List<String> getTracks() {
  36. return tracks;
  37. }
  38. public void setTracks(List<String> tracks) {
  39. this.tracks = tracks;
  40. }
  41.  
  42. }
接口 MediaPlayer.java
  1. package com.bonc.pojo;
  2.  
  3. public interface MediaPlayer {
  4. void play();
  5. }
实现类CDPlayer.java
  1. package com.bonc.pojo;
  2.  
  3. public class CDPlayer implements MediaPlayer{
  4.  
  5. private CompactDisc cd;
  6. public CDPlayer(){
  7. super();
  8. }
  9. public CDPlayer(CompactDisc cd){
  10. this.cd = cd;
  11. }
  12. public void play() {
  13. cd.play();
  14. }
  15.  
  16. public void setCd(CompactDisc cd) {
  17. this.cd = cd;
  18. }
  19.  
  20. }

Spring.xml配置信息
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:c="http://www.springframework.org/schema/c"
  4. xmlns:p="http://www.springframework.org/schema/p"
  5. xmlns:util="http://www.springframework.org/schema/util"
  6. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  7. xmlns:aop="http://www.springframework.org/schema/aop"
  8. xmlns:tx="http://www.springframework.org/schema/tx"
  9. xmlns:context="http://www.springframework.org/schema/context"
  10. xsi:schemaLocation="
  11. http://www.springframework.org/schema/beans
  12. http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
  13. http://www.springframework.org/schema/tx
  14. http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
  15. http://www.springframework.org/schema/aop
  16. http://www.springframework.org/schema/aop/spring-aop-4.0.xsd
  17. http://www.springframework.org/schema/context
  18. http://www.springframework.org/schema/context/spring-context-4.0.xsd
  19. http://www.springframework.org/schema/util
  20. http://www.springframework.org/schema/util/spring-util.xsd">
  21. <!--
  22. 一、XML配置说明:
  23. 在Spring刚刚出现的时候,XML是描述配置的主要方式。
  24. 尽管Spring长期以来确实与XML有着关联,但需要说明的是,XML不再是配置Spring的唯一方案。
  25. 鉴于已经存在那么多基于XML的Spring配置,所以理解如何在Spring中配置XML还是很重要的。
  26. 本篇文章在于帮助你维护已有的XML配置,在完成新的Spring工作时,希望你使用自动化配置和JavaConfig
  27. 如果不给出ID属性,这个bean会根据全限定类名来进行命名
  28. 本例中为 com.bonc.pojo.SgtPeppers#0 #0是一个计数的形式,用来区分其他相同类型的bean
  29. -->
  30. <bean id="compactDisc" class="com.bonc.pojo.SgtPeppers"/>
  31. <!--
  32. 二、借助构造器初始化bean有两种方案:
  33. 1. <constructor-arg>元素
  34. 2. 使用Spring3.0所引入的c-命名空间
  35. -->
  36. <bean id="cdPlayer" class="com.bonc.pojo.CDPlayer">
  37. <constructor-arg ref="compactDisc"/>
  38. </bean>
  39. <!--
  40. c:cd-ref
  41. c(命名空间的前缀)-构造器的参数名-ref(告诉Spring 正在装配的是一个bean的引用)
  42. 也可以使用参数在参数列表中的位置信息
  43. c:_0-ref="compactDisc"
  44. -->
  45. <bean id="cdPlayer2" class="com.bonc.pojo.CDPlayer" c:cd-ref="compactDisc"/>
  46. <!--
  47. 装配字面量
  48. -->
  49. <bean id="compactDisc" class="com.bonc.pojo.SgtPeppers">
  50. <constructor-arg value="Sgt. Pepper's Lonely Hearts Club Band"/>
  51. <constructor-arg value="The Beatles"/>
  52. </bean>
  53. <bean id="compactDisc" class="com.bonc.pojo.SgtPeppers"
  54. c:_title="gt. Pepper's Lonely Hearts Club Band"
  55. c:_artist="The Beatles"/>
  56. <bean id="compactDisc" class="com.bonc.pojo.SgtPeppers"
  57. c:_0="gt. Pepper's Lonely Hearts Club Band"
  58. c:_1="The Beatles"/>
  59. <!--
  60. 装配list
  61. -->
  62. <bean id="compactDisc" class="com.bonc.pojo.BlankDisc">
  63. <constructor-arg value="Sgt. Pepper's Lonely Hearts Club Band"/>
  64. <constructor-arg value="The Beatles"/>
  65. <constructor-arg>
  66. <list>
  67. <value>Sgt.Pepper's warm heart</value>
  68. <value>With a little help from My Friends</value>
  69. <value>in the Sky with Diamonds</value>
  70. <value>Getting Better</value>
  71. <value>Fixing A Hole</value>
  72. </list>
  73. </constructor-arg>
  74. </bean>
  75. <!-- 装配set -->
  76. <bean id="compactDisc" class="com.bonc.pojo.BlankDisc">
  77. <constructor-arg value="Sgt. Pepper's Lonely Hearts Club Band"/>
  78. <constructor-arg value="The Beatles"/>
  79. <constructor-arg>
  80. <set>
  81. <value>Sgt.Pepper's warm heart</value>
  82. <value>With a little help from My Friends</value>
  83. <value>in the Sky with Diamonds</value>
  84. <value>Getting Better</value>
  85. <value>Fixing A Hole</value>
  86. </set>
  87. </constructor-arg>
  88. </bean>
  89. <!--
  90. 三、属性初始化bean
  91. -->
  92. <bean id="compactDisc" class="com.bonc.pojo.BlankDisc">
  93. <property name="title" value="Sgt. Pepper's Lonely Hearts Club Band"/>
  94. <property name="artist"value="The Beatles"/>
  95. <property name="tracks">
  96. <list>
  97. <value>Sgt.Pepper's warm heart</value>
  98. <value>With a little help from My Friends</value>
  99. <value>in the Sky with Diamonds</value>
  100. <value>Getting Better</value>
  101. <value>Fixing A Hole</value>
  102. </list>
  103. </property>
  104. </bean>
  105. <!--
  106. 四、使用Spring util-命名空间简化bean配置
  107. 首先需要在XML中声明util-命名空间及其模式
  108. util:list只是util-命名空间中的多个元素之一
  109. -->
  110. <util:list id="trackList">
  111. <value>Sgt.Pepper's warm heart</value>
  112. <value>With a little help from My Friends</value>
  113. <value>in the Sky with Diamonds</value>
  114. <value>Getting Better</value>
  115. <value>Fixing A Hole</value>
  116. </util:list>
  117. <bean id="compactDisc" class="com.bonc.pojo.BlankDisc"
  118. p:title="Sgt. Pepper's Lonely Hearts Club Band"
  119. p:artist="The Beatles"
  120. p:track-ref="trackList"/>
  121. </beans>

猜你在找的XML相关文章