Spring学习笔记 | 详解bean的配置(二):Spring

2019-10-09  本文已影响0人  一颗白菜_

XML配置里面的Bean自动装配

Spring IOC容器可以自动装配Bean,需要做的仅仅是在<bean>autowire属性里指定自动装配的模式。


<?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:p="http://www.springframework.org/schema/p"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">

    <bean id="car" class="com.spring.autowire.Car" p:brand="Audi" p:price="300000"></bean>
    <bean id="address" class="com.spring.autowire.Address" p:city="BeiJing" p:street="HuiLongGuan" ></bean>
    <!-- 可以使用autowire属性指定自动装配的方式-->
    <!-- byName根据bean的名字和当前bean的setter风格的属性名进行自动装配若有匹配的,则进行自动装配;若没有匹配的,则不装配-->
    <bean id="person" class="com.spring.autowire.Person" p:name="Tom" autowire="byName"></bean>
</beans>

上述的配置,personcar属性和address属性就会根据上面定义的两个bean(名字与person中的setter方法名字一样)来进行自动装配,如果名字不一致那就不会装配。

上一篇 下一篇

猜你喜欢

热点阅读