91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Spring實戰之獲取其他Bean的屬性值操作示例

發布時間:2020-10-09 02:46:12 來源:腳本之家 閱讀:297 作者:cakincqm 欄目:編程語言

本文實例講述了Spring實戰之獲取其他Bean的屬性值操作。分享給大家供大家參考,具體如下:

一 配置

<?xml version="1.0" encoding="GBK"?>
<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xmlns="http://www.springframework.org/schema/beans"
   xmlns:util="http://www.springframework.org/schema/util"
   xsi:schemaLocation="http://www.springframework.org/schema/beans
   http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
   http://www.springframework.org/schema/util
   http://www.springframework.org/schema/util/spring-util-4.0.xsd">
   <!--下面配置定義一個將要被引用的目標bean-->
   <bean id="person" class="org.crazyit.app.service.Person">
      <property name="age" value="30"/>
      <property name="son">
        <!-- 使用嵌套Bean定義setSon()方法的參數值 -->
        <bean class="org.crazyit.app.service.Son">
           <property name="age" value="11" />
        </bean>
      </property>
   </bean>
   <!-- 將指定Bean實例的getter方法返回值定義成son1 Bean -->
   <bean id="son1" class=
      "org.springframework.beans.factory.config.PropertyPathFactoryBean">
      <!-- 確定目標Bean,指定son1 Bean來自哪個Bean的getter方法 -->
      <property name="targetBeanName" value="person"/>
      <!-- 指定son1 Bean來自目標bean的哪個getter方法,son代表getSon() -->
      <property name="propertyPath" value="son"/>
   </bean>
   <!-- 簡化配置
   <util:property-path id="son1" path="person.son"/> -->
   <!-- 下面定義son2 Bean -->
   <bean id="son2" class="org.crazyit.app.service.Son">
      <property name="age">
        <!-- 使用嵌套Bean為調用setAge()方法指定參數值 -->
        <!-- 以下是訪問指定Bean的getter方法的簡單方式,
        person.son.age代表獲取person.getSon().getAge()-->
        <bean id="person.son.age" class=
           "org.springframework.beans.factory.config.PropertyPathFactoryBean"/>
      </property>
   </bean>
   <!-- 簡化配置
   <bean id="son2" class="org.crazyit.app.service.Son">
      <property name="age">
        <util:property-path path="person.son.age"/>
      </property>
   </bean> -->
   <!-- 將基本數據類型的屬性值定義成Bean實例 -->
   <bean id="theAge" class=
      "org.springframework.beans.factory.config.PropertyPathFactoryBean">
      <!-- 確定目標Bean,表明theAge Bean來自哪個Bean的getter方法的返回值 -->
      <property name="targetBeanName" value="person"/>
      <!-- 使用復合屬性來指定getter方法。son.age代表getSon().getAge() -->
      <property name="propertyPath" value="son.age"/>
   </bean>
   <!-- 簡化配置
   <util:property-path id="theAge" path="person.son.age"/> -->
   <!-- 將基本數據類型的屬性值定義成Bean實例 -->
   <bean id="theAge2" class=
      "org.springframework.beans.factory.config.PropertyPathFactoryBean">
      <!-- 確定目標Bean,表明theAge2 Bean來自哪個Bean的屬性。
        此處采用嵌套Bean定義目標Bean -->
      <property name="targetObject">
        <!-- 目標Bean不是容器中已經存在的Bean, 而是如下的嵌套Bean-->
        <bean class="org.crazyit.app.service.Person">
           <property name="age" value="30"/>
        </bean>
      </property>
      <!-- 指定theAge2 Bean來自目標bean的哪個getter方法,age代表getAge() -->
      <property name="propertyPath" value="age"/>
   </bean>
</beans>

二 Bean

1 Person

package org.crazyit.app.service;
public class Person
{
   private int age;
   private Son son;
   // age的setter和getter方法
   public void setAge(int age)
   {
      this.age = age;
   }
   public int getAge()
   {
      return this.age;
   }
   // son的setter和getter方法
   public void setSon(Son son)
   {
      this.son = son;
   }
   public Son getSon()
   {
      return this.son;
   }
}

2 Son

package org.crazyit.app.service;
public class Son
{
   private int age;
   // age的setter和getter方法
   public void setAge(int age)
   {
      this.age = age;
   }
   public int getAge()
   {
      return this.age;
   }
   public String toString()
   {
      return "Son[age=" + age + "]";
   }
}

三 測試類

package lee;
import org.springframework.context.*;
import org.springframework.context.support.*;
import org.crazyit.app.service.*;
public class SpringTest
{
  public static void main(String[] args)
  {
    ApplicationContext ctx = new
      ClassPathXmlApplicationContext("beans.xml");
    System.out.println("系統獲取的son1:"
      + ctx.getBean("son1"));
    System.out.println("系統獲取son2:"
      + ctx.getBean("son2"));
    System.out.println("系統獲取theAge的值:"
      + ctx.getBean("theAge"));
    System.out.println("系統獲取theAge2的值:"
      + ctx.getBean("theAge2"));
  }
}

四 測試結果

系統獲取的son1:Son[age=11]
系統獲取son2:Son[age=11]
系統獲取theAge的值:11
系統獲取theAge2的值:30

更多關于java相關內容感興趣的讀者可查看本站專題:《Spring框架入門與進階教程》、《Java數據結構與算法教程》、《Java操作DOM節點技巧總結》、《Java文件與目錄操作技巧匯總》和《Java緩存操作技巧匯總》

希望本文所述對大家java程序設計有所幫助。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

宁城县| 霞浦县| 勐海县| 济南市| 普洱| 沙洋县| 晋江市| 沿河| 七台河市| 临沧市| 汾阳市| 巫溪县| 印江| 鄂尔多斯市| 兴化市| 綦江县| 建水县| 疏勒县| 高碑店市| 延津县| 柳江县| 改则县| 从化市| 汉源县| 保靖县| 顺昌县| 讷河市| 平利县| 丰顺县| 隆化县| 玛曲县| 东至县| 景宁| 咸宁市| 板桥市| 嵊泗县| 志丹县| 阿拉善盟| 资中县| 巴楚县| 仙居县|