IOC創(chuàng)建對(duì)象的方法
3、IOC創(chuàng)建對(duì)象的方法
使用無(wú)參構(gòu)造創(chuàng)建對(duì)象,默認(rèn)!
使用有參構(gòu)造創(chuàng)建對(duì)象
<!--第一種 ?下標(biāo)賦值--> ? ?<bean id="user" class="com.jan.pojo.User"> ? ? ?<constructor-arg index="0" value="鐘健"/> ? ?</bean>
類(lèi)型創(chuàng)建
<!--第二種 ? 通過(guò)類(lèi)型創(chuàng)建 ?不建議使用--> ? ?<bean id="user" class="com.jan.pojo.User"> ? ? ? ?<constructor-arg type="java.lang.String" value="zhongjian"/> ? ?</bean>
參數(shù)名
<!-- ? 第三種 ?直接通過(guò)參數(shù)名來(lái)設(shè)置--> ? ?<bean id="user" class="com.jan.pojo.User"> ? ? ? ?<constructor-arg name="name" value="Jan"/> ? ?</bean>
下標(biāo)賦值
總結(jié):在配置文件加載的時(shí)候,容器中的管理的對(duì)象就已經(jīng)初始化了!
4、Spring配置
4.1、別名
<!--別名,如果添加了別名,我們也可以使用別名取到這個(gè)對(duì)象-->
? ?<alias name="user" alias="userNew"/>
4.2、Bean的配置
<!--
? ? id: bean 的唯一標(biāo)識(shí)符,也就是相當(dāng)于我們學(xué)的對(duì)象名
? ? class: bean 對(duì)象所對(duì)應(yīng)的全限定名: 包名 + 類(lèi)型
? ? name: 也是別名, 而且name 可以同時(shí)取多個(gè)別名
-->
? ?<bean id="userT" class="com.jan.pojo.UserT" name="user2 u2,u3;u4">
? ? ? ?<property name="name" value="鐘健學(xué)習(xí)"/>
? ?</bean>
4.3、import
這個(gè)import一般用于團(tuán)隊(duì)開(kāi)發(fā)使用,他可以將多個(gè)配置文件導(dǎo)入合并為一個(gè),假設(shè),現(xiàn)在項(xiàng)目有對(duì)人開(kāi)發(fā),將三人不同的開(kāi)類(lèi)需注冊(cè)到不同的bean中,我們可以利用import將所有人的beans.xml合并為一個(gè)總的!
張三
李四
王五
applicationContext
? ?<import resource="beans.xml"/> ? ?<import resource="beans2.xml"/> ? ?<import resource="beans3.xml"/>
5、依賴(lài)注入
5.1、構(gòu)造器注入
依賴(lài)注入:
依賴(lài):bean對(duì)象的創(chuàng)建依賴(lài)于容器!
注入: bean對(duì)象中的所有屬性,由容器注入!
【環(huán)境搭建】
復(fù)雜類(lèi)型
public class Address { ? ?private ?String address; ? ?public String getAddress() { ? ? ? ?return address; ? ?} ? ?public void setAddress(String address) { ? ? ? ?this.address = address; ? ?} }
真實(shí)測(cè)試對(duì)象
public class Student { ? ?private String name; ? ?private Address address; ? ?private ?String[] books; ? ?private List<String>hobbys; ? ?private Map<String,String> card; ? ?private Set<String> games; ? ?private ?String wife; ? ?private Properties info; }
beans.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" ? ? ? xsi:schemaLocation="http://www.springframework.org/schema/beans ? ? ? ?https://www.springframework.org/schema/beans/spring-beans.xsd"> ? ?<bean id="student" class="com.jan.pojo.Student"> ? ? ? ?<!--第一種,普通注入,value--> ? ? ? ?<property name="name" value="鐘健"/> ? ?</bean> </beans>
測(cè)試類(lèi)
public class MyTest { ? ?public static void main(String[] args) { ? ? ? ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml"); ? ? ? ?Student student = (Student) context.getBean("student"); ? ? ? ?System.out.println(student.getName()); ? ?} }
完善注入信息
<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 ? ? ? ?https://www.springframework.org/schema/beans/spring-beans.xsd"> ? ?<bean id="address" class="com.jan.pojo.Address"> ? ? ? ?<property name="address" value="北京"/> ? ?</bean> ? ?<bean id="student" class="com.jan.pojo.Student"> ? ? ? ?<!--第一種,普通注入,value--> ? ? ? ?<property name="name" value="鐘健"/> ? ? ? ?<!--第二種,bean注入,ref--> ? ? ? ?<property name="address" ref="address"/> ? ? ? ?<!--數(shù)組注入--> ? ? ? ?<property name="books"> ? ? ? ? ? ?<array> ? ? ? ? ? ? ? ?<value>紅樓夢(mèng)</value> ? ? ? ? ? ? ? ?<value>水滸傳</value> ? ? ? ? ? ? ? ?<value>三國(guó)演義</value> ? ? ? ? ? ? ? ?<value>西游記</value> ? ? ? ? ? ?</array> ? ? ? ?</property> ? ? ? ?<!--List--> ? ? ? ?<property name="hobbys"> ? ? ? ? ? ?<list> ? ? ? ? ? ? ? ?<value>聽(tīng)歌</value> ? ? ? ? ? ? ? ?<value>敲代碼</value> ? ? ? ? ? ? ? ?<value>看電影</value> ? ? ? ? ? ?</list> ? ? ? ?</property> ? ? ? ?<!--Map--> ? ? ? ?<property name="card"> ? ? ? ? ? ?<map> ? ? ? ? ? ? ? ?<entry key="身份證" value="111111222222223333"/> ? ? ? ? ? ? ? ?<entry key="銀行卡" value="123456789"/> ? ? ? ? ? ?</map> ? ? ? ?</property> ? ? ? ?<!--Set--> ? ? ? ?<property name="games"> ? ? ? ? ? ?<set> ? ? ? ? ? ? ? ?<value>LOL</value> ? ? ? ? ? ? ? ?<value>COS</value> ? ? ? ? ? ?</set> ? ? ? ?</property> ? ? ? ?<!--null--> ? ? ? ?<property name="wife"> ? ? ? ? ? ?<null/> ? ? ? ?</property> ? ? ? ?<!--Properties--> ? ? ? ?<property name="info"> ? ? ? ? ? ?<props> ? ? ? ? ? ? ? ?<prop key="driver">20230102</prop> ? ? ? ? ? ? ? ?<prop key="url">男</prop> ? ? ? ? ? ? ? ?<prop key="username">root</prop> ? ? ? ? ? ? ? ?<prop key="password">123456</prop> ? ? ? ? ? ?</props> ? ? ? ?</property> ? ?</bean></beans>
5.2、Set方式注入【重點(diǎn)】
5.3、擴(kuò)展方式注入
我們可以使用P命名空間和C 命名空間進(jìn)行注入
官方解釋

使用
<beans xmlns="http://www.springframework.org/schema/beans" ? ? ? xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ? ? ? xmlns:p="http://www.springframework.org/schema/p" ? ? ? xmlns:c="http://www.springframework.org/schema/c" ? ? ? xsi:schemaLocation="http://www.springframework.org/schema/beans ? ? ? ?https://www.springframework.org/schema/beans/spring-beans.xsd"> ? ? <!-- P命名空間注入,可以直接注入屬性的值 ? property--> ? ?<bean id="user" class="com.jan.pojo.User" p:name="鐘健" p:age="18"/> ? ?<!-- c命名空間注入,通過(guò)構(gòu)造器注入 ? construct-args--> ? ?<!--在User類(lèi)中要有無(wú)參和有參構(gòu)造器才可以使用 C 命名注入--> ? ?<bean id="user2" class="com.jan.pojo.User" c:age="18" c:name="Jan"/> ? ? ? ?</beans>
測(cè)試
public void test2(){ ? ?ApplicationContext context = new ClassPathXmlApplicationContext("userbeans.xml"); ? ? ? ?//User user = context.getBean("user", User.class); ? ?User user = context.getBean("user2", User.class); ? ?System.out.println(user); }
注意點(diǎn):?P 命名和 C 命名空間不能直接使用,需要導(dǎo)入xml約束!
P命名注入
xmlns:p="http://www.springframework.org/schema/p"
C命名注入
xmlns:c="http://www.springframework.org/schema/c"
5.4、bean的作用域

單例模式(Spring默認(rèn)機(jī)制)--->30分鐘的教學(xué)記得看
<bean id="user2" class="com.jan.pojo.User" c:age="18" c:name="Jan" scope="singleton"/>
有時(shí)候并發(fā)情況下會(huì)產(chǎn)生延遲或數(shù)據(jù)不一致,單線(xiàn)程一般用這個(gè)
原型模式:每次從容器中g(shù)et的時(shí)候,都會(huì)產(chǎn)生一個(gè)新對(duì)象!
<bean id="user2" class="com.jan.pojo.User" c:age="18" c:name="Jan" scope="prototype"/>
別特浪費(fèi)資源,多線(xiàn)程可以使用原型模式
其余的request、session、application,這些個(gè)只能在web開(kāi)發(fā)中使用的!
6、Bean的自動(dòng)配置
自動(dòng)配置是Spring滿(mǎn)足bean依賴(lài)的一種方式
Spring會(huì)在上下文中自動(dòng)尋找,并自動(dòng)給bean裝配屬性!
在spring的三種配置方式:
在xml中顯示的配置
在java中顯示的配置
隱式 的自動(dòng)裝配bean【重要】
6.1、測(cè)試
環(huán)境搭建:一個(gè)人有兩個(gè)寵物!
原來(lái)的xml配置
? ?<bean id="cat" class="com.jan.pojo.Cat"/>
? ?<bean id="dog" class="com.jan.pojo.Dog"/>
? ?<bean id="people" class="com.jan.pojo.People">
? ? ? ?<property name="name" value="鐘健"/>
? ? ? ?<property name="cat" ref="cat"/>
? ? ? ?<property name="dog" ref="dog"/>
? ?</bean>
6.2、ByName自動(dòng)裝配
<bean id="cat" class="com.jan.pojo.Cat"/><bean id="dog" class="com.jan.pojo.Dog"/><!--
? ?ByName: 會(huì)自動(dòng)在容器上下文中查找,和自己對(duì)象set方法后面的值對(duì)應(yīng)的 bean id!
? ?ByType: 會(huì)自動(dòng)在容器上下文中查找,和自己對(duì)象屬性類(lèi)型相同的 bean !
? ?--><bean id="people" class="com.jan.pojo.People" autowire="byName">
? ?<property name="name" value="鐘健"/></bean>
6.3、ByType自動(dòng)裝配
<bean ?class="com.jan.pojo.Cat"/><bean ?class="com.jan.pojo.Dog"/><!--
? ?ByName: 會(huì)自動(dòng)在容器上下文中查找,和自己對(duì)象set方法后面的值對(duì)應(yīng)的 bean id!
? ?ByType: 會(huì)自動(dòng)在容器上下文中查找,和自己對(duì)象屬性類(lèi)型相同的 bean !
? ?--><bean id="people" class="com.jan.pojo.People" autowire="byType">
? ?<property name="name" value="鐘健"/></bean>
小結(jié):
byname的時(shí)候,需要保證所有的bean的id唯一,并且這個(gè)bean需要和自動(dòng)注入的屬性的set方法的值一致!
bytype的時(shí)候,需要保證所有的bean的class唯一,并且這個(gè)bean需要和自動(dòng)注入的屬性的類(lèi)型一致!