激情久久久_欧美视频区_成人av免费_不卡视频一二三区_欧美精品在欧美一区二区少妇_欧美一区二区三区的

服務(wù)器之家:專注于服務(wù)器技術(shù)及軟件下載分享
分類導(dǎo)航

PHP教程|ASP.NET教程|JAVA教程|ASP教程|

香港云服务器
服務(wù)器之家 - 編程語言 - JAVA教程 - Java的Spring框架中bean的繼承與內(nèi)部bean的注入

Java的Spring框架中bean的繼承與內(nèi)部bean的注入

2020-03-08 15:23goldensun JAVA教程

這篇文章主要介紹了Java的Spring框架中bean的繼承與內(nèi)部bean的注入,Spring框架是Java的SSH三大web開發(fā)框架之一,需要的朋友可以參考下

bean的定義繼承
bean定義可以包含很多的配置信息,包括構(gòu)造函數(shù)的參數(shù),屬性值,比如初始化方法,靜態(tài)工廠方法名等容器的具體信息。

子bean定義從父定義繼承配置數(shù)據(jù)。子的定義可以覆蓋一些值,或者根據(jù)需要添加其他。

Spring bean定義繼承無關(guān),與Java類的繼承,但繼承的概念是一樣的。你可以定義一個父bean定義為模板和其他孩子bean可以從父bean繼承所需的配置。

當使用基于XML的配置元數(shù)據(jù),指明一個子bean定義使用所在的當前屬性指定的父bean作為這個屬性的值。

例如:
讓我們使用Eclipse IDE,然后按照下面的步驟來創(chuàng)建一個Spring應(yīng)用程序:

Java的Spring框架中bean的繼承與內(nèi)部bean的注入

以下是我們定義的“HelloWorld”豆里面有兩個屬性message1和message2配置文件beans.xml中。下一步“helloIndia”豆已經(jīng)被定義為“HelloWorld”的子bean使用parent屬性。該子bean繼承message2屬性原狀,并覆蓋message1 屬性,并引入多一個屬性message3。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?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/beans
 http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">
 
 <bean id="helloWorld" class="com.yiibai.HelloWorld">
  <property name="message1" value="Hello World!"/>
  <property name="message2" value="Hello Second World!"/>
 </bean>
 
 <bean id="helloIndia" class="com.yiibai.HelloIndia"
  parent="helloWorld">
  <property name="message1" value="Hello India!"/>
  <property name="message3" value="Namaste India!"/>
 </bean>
 
</beans>

這里是HelloWorld.java 文件的內(nèi)容:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.yiibai;
 
public class HelloWorld {
 private String message1;
 private String message2;
 
 public void setMessage1(String message){
  this.message1 = message;
 }
 
 public void setMessage2(String message){
  this.message2 = message;
 }
 
 public void getMessage1(){
  System.out.println("World Message1 : " + message1);
 }
 
 public void getMessage2(){
  System.out.println("World Message2 : " + message2);
 }
}

這里是HelloIndia.java文件的內(nèi)容:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package com.yiibai;
 
public class HelloIndia {
 private String message1;
 private String message2;
 private String message3;
 
 public void setMessage1(String message){
  this.message1 = message;
 }
 
 public void setMessage2(String message){
  this.message2 = message;
 }
 
 public void setMessage3(String message){
  this.message3 = message;
 }
 
 public void getMessage1(){
  System.out.println("India Message1 : " + message1);
 }
 
 public void getMessage2(){
  System.out.println("India Message2 : " + message2);
 }
 
 public void getMessage3(){
  System.out.println("India Message3 : " + message3);
 }
}

以下是MainApp.java文件的內(nèi)容:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.yiibai;
 
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
 
public class MainApp {
 public static void main(String[] args) {
  ApplicationContext context =
    new ClassPathXmlApplicationContext("Beans.xml");
 
  HelloWorld objA = (HelloWorld) context.getBean("helloWorld");
 
  objA.getMessage1();
  objA.getMessage2();
 
  HelloIndia objB = (HelloIndia) context.getBean("helloIndia");
  objB.getMessage1();
  objB.getMessage2();
  objB.getMessage3();
 }
}

創(chuàng)建完成源代碼和bean配置文件,讓我們運行應(yīng)用程序。如果一切順利,這將打印以下信息:

?
1
2
3
4
5
World Message1 : Hello World!
World Message2 : Hello Second World!
India Message1 : Hello India!
India Message2 : Hello Second World!
India Message3 : Namaste India!

如果你在這里看到,我們沒有通過message2同時創(chuàng)建“helloIndia”的bean,但它通過了,因為bean定義的繼承。

bean定義模板:
您可以創(chuàng)建可以在不會花太多功夫被其他子bean定義的bean定義模板。在定義bean定義模板,不應(yīng)指定類屬性,并應(yīng)與真值指定如下所示的抽象屬性:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?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/beans
 http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">
 
 <bean id="beanTeamplate" abstract="true">
  <property name="message1" value="Hello World!"/>
  <property name="message2" value="Hello Second World!"/>
  <property name="message3" value="Namaste India!"/>
 </bean>
 
 <bean id="helloIndia" class="com.yiibai.HelloIndia"
  parent="beanTeamplate">
  <property name="message1" value="Hello India!"/>
  <property name="message3" value="Namaste India!"/>
 </bean>
 
</beans>

父bean不能被實例化它自己,因為它是不完整的,而且它也明確地標記為抽象。當一個定義是抽象的這個樣子,它只是作為一個純粹的模板bean定義,充當子定義的父定義使用。

注入內(nèi)部bean
正如你所知道的Java內(nèi)部類是其他類的范圍內(nèi)定義的,同樣,內(nèi)部bean是被其他bean的范圍內(nèi)定義的bean。因此<property/>或<constructor-arg/>元素內(nèi)<bean/>元件被稱為內(nèi)部bean和它如下所示。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?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/beans
 http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">
 
 <bean id="outerBean" class="...">
  <property name="target">
   <bean id="innerBean" class="..."/>
  </property>
 </bean>
 
</beans>

例如:
我們使用Eclipse IDE,然后創(chuàng)建一個Spring應(yīng)用程序,

這里是TextEditor.java文件的內(nèi)容:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.yiibai;
 
public class TextEditor {
 private SpellChecker spellChecker;
 
 // a setter method to inject the dependency.
 public void setSpellChecker(SpellChecker spellChecker) {
  System.out.println("Inside setSpellChecker." );
  this.spellChecker = spellChecker;
 }
 // a getter method to return spellChecker
 public SpellChecker getSpellChecker() {
  return spellChecker;
 }
 
 public void spellCheck() {
  spellChecker.checkSpelling();
 }
}

下面是另外一個相關(guān)的類文件SpellChecker.java內(nèi)容:

?
1
2
3
4
5
6
7
8
9
10
11
12
package com.yiibai;
 
public class SpellChecker {
 public SpellChecker(){
  System.out.println("Inside SpellChecker constructor." );
 }
 
 public void checkSpelling(){
  System.out.println("Inside checkSpelling." );
 }
 
}

以下是MainApp.java文件的內(nèi)容:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.yiibai;
 
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
 
public class MainApp {
 public static void main(String[] args) {
  ApplicationContext context =
    new ClassPathXmlApplicationContext("Beans.xml");
 
  TextEditor te = (TextEditor) context.getBean("textEditor");
 
  te.spellCheck();
 }
}

以下是配置文件beans.xml文件里面有配置為基于setter 注入,但使用內(nèi)部bean:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?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/beans
 http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">
 
 <!-- Definition for textEditor bean using inner bean -->
 <bean id="textEditor" class="com.yiibai.TextEditor">
  <property name="spellChecker">
   <bean id="spellChecker" class="com.yiibai.SpellChecker"/>
  </property>
 </bean>
 
</beans>

創(chuàng)建源代碼和bean配置文件來完成,讓我們運行應(yīng)用程序。如果一切順利,這將打印以下信息:

?
1
2
3
Inside SpellChecker constructor.
Inside setSpellChecker.
Inside checkSpelling.

延伸 · 閱讀

精彩推薦
471
主站蜘蛛池模板: 国产精品久久久久影院老司 | 51国产偷自视频区视频小蝌蚪 | 色羞羞 | 久久老司机精品视频 | 2021av视频 | 羞羞视频免费入口网站 | 成人区一区二区三区 | 在线观看国产免费视频 | 色综合久久99 | 久久久一区二区精品 | 色屁屁xxxxⅹ免费视频 | 中文字幕在线观看视频一区 | 国产一区二区三区手机在线 | 亚洲艳情网站 | 国产在线a| 一级成人欧美一区在线观看 | 成人一级黄色 | 爽爽视频免费看 | 日韩av电影免费看 | 日本高清电影在线播放 | 日本欧美在线播放 | 国产精品视频导航 | 精品一区二区免费视频视频 | 成人污在线 | 欧美视频一二区 | 日韩欧美中文字幕视频 | 天天草天天干天天射 | 香蕉在线播放 | 精品久久久久久久久久久久 | 在线看91| 日本欧美视频 | 国产精品免费大片 | 亚洲一区二区三区四区精品 | 91成人免费 | 操碰在线视频 | 国产精品午夜未成人免费观看 | 国产视频在线观看一区二区三区 | 一级毛片播放 | 国产免费资源 | 在线日韩| 欧美福利视频一区二区 |