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

溫馨提示×

溫馨提示×

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

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

spring中怎么利用構造函數實現注入

發布時間:2021-07-28 14:25:12 來源:億速云 閱讀:188 作者:Leah 欄目:編程語言

本篇文章給大家分享的是有關spring中怎么利用構造函數實現注入,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

一 通過構造函數注入

set注入的缺點是無法清晰表達哪些屬性是必須的,哪些是可選的,構造注入的優勢是通過構造強制依賴關系,不可能實例化不完全的或無法使用的bean。

二 舉例

1Employee

package com.hsp.constructor;public class Employee {    private String name;    private int age;    public Employee(String name) {        System.out.println("Employee(String name) 函數被調用..");        this.name = name;        this.age = age;    }        public Employee(String name, int age) {        System.out.println("Employee(String name, int age) 函數被調用..");        this.name = name;        this.age = age;    }    public String getName() {        return name;    }    public void setName(String name) {        this.name = name;    }    public int getAge() {        return age;    }    public void setAge(int age) {        this.age = age;    }}

2beans.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";        xmlns:context="http://www.springframework.org/schema/context";        xmlns:tx="http://www.springframework.org/schema/tx";        xsi:schemaLocation="http://www.springframework.org/schema/beanshttp://www.springframework.org/schema/beans/spring-beans-2.5.xsdhttp://www.springframework.org/schema/contexthttp://www.springframework.org/schema/context/spring-context-2.5.xsdhttp://www.springframework.org/schema/txhttp://www.springframework.org/schema/tx/spring-tx-2.5.xsd";><!-- 配置一個雇員對象 --><bean id="employee" class="com.hsp.constructor.Employee"><!-- 通過構造函數來注入屬性值 --><constructor-arg index="0" type="java.lang.String" value="大明" /></bean></beans>

3App1

package com.hsp.constructor;import org.springframework.context.ApplicationContext;import org.springframework.context.support.ClassPathXmlApplicationContext;public class App1 {  /**   * @param args   */  public static void main(String[] args) {    // TODO Auto-generated method stub    ApplicationContext ac=new ClassPathXmlApplicationContext("com/hsp/constructor/beans.xml");    Employee ee=(Employee) ac.getBean("employee");    System.out.println(ee.getName());  }}

三 測試結果

Employee(String name) 函數被調用..大明

以上就是spring中怎么利用構造函數實現注入,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

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

AI

肇源县| 含山县| 阿图什市| 阳谷县| 新田县| 金寨县| 巨鹿县| 临湘市| 教育| 平和县| 商南县| 云和县| 西畴县| 航空| 四平市| 增城市| 成都市| 德阳市| 盐津县| 衡阳县| 习水县| 岳阳市| 怀宁县| 肃北| 曲阜市| 吐鲁番市| 大姚县| 鸡西市| 抚宁县| 堆龙德庆县| 独山县| 阿尔山市| 盐津县| 杭锦后旗| 岑巩县| 鹿泉市| 荥阳市| 广汉市| 林西县| 来安县| 屏南县|