SpringIOC建立物件第一練

2021-09-10 22:02:22 字數 939 閱讀 1508

①建立ioc容器物件

package com.ioc.bean;

public class book

public book(integer bookid, string bookname, string author, double price)

public integer getbookid()

public void setbookid(integer bookid)

public string getbookname()

public void setbookname(string bookname)

public string getauthor()

public void setauthor(string author)

public double getprice()

public void setprice(double price)

@override

public string tostring()

}

package com.ioc.test;

import org.junit.test;

public class ioctest

}

②呼叫ioc容器物件的getbean()方法即可獲取ioc容器中配置的bean對應的物件

[1]getbean(string id) 根據配置檔案中指定的bean的id獲取

[2]getbean(class<?> clazz) 根據bean的型別

根據型別獲取bean的前提條件是ioc容器中指定型別的bean只有乙個

<?xml version="1.0" encoding="utf-8"?>

spring IOC建立物件方式

1.無參構造方法建立 1.1建立乙個實體類user public class user public void setname string name override public string tostring 1.2在配置檔案中註冊 1.3測試 public class mytest 1.4執...

spring ioc 建立物件的方式

一 無參建構函式 bean id user class com.wt.pojo.user property name name value tom bean 二 含參建構函式 1 通過 name 鍵值對 bean id teacher class com.wt.pojo.teacher constr...

SpringIOC建立bean物件的三種方式

通常有3種方式,第一種用於我們自定義的類,後面兩種是為了應用第三方jar包中的類,根據jar中的建立物件的方式進行選擇 建立bean的型別 bean scope prototype id accountservice4 class com.village.service.impl.accountse...