您的位置:首页 > 移动开发

Spring自动装配applicationxml

2017-01-01 00:00 134 查看
摘要: Spring自动装配applicationxml

1.TestAutowire.java

<?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"
xmlns:util="http://www.springframework.org/schema/util"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.1.xsd"> 
<bean id="address1" class="com.huangliusong.spring.autowire.Address"
p:city="北京" p:street="新湖街道">
</bean>
<bean id="address2" class="com.huangliusong.spring.autowire.Address"
p:city="北京" p:street="新湖街道">
</bean>

<bean id="car" class="com.huangliusong.spring.autowire.Car"
p:brand="奥迪" p:price="2000">
</bean>
<!-- 可以使用autowire属性指定自动装配的方式byName根据bean的名字和当前setter风格的属性名进行自动装配
若有匹配的则进行自动装配若没有匹配的则不装配

byType 根据bean类型和当前bean的属性的类型进行 自动装配 如果按照类型装配
只能有一个 有两个类型一样的分不清用哪个
-->
<bean id="person" class="com.huangliusong.spring.autowire.Person"
autowire="byType">
</bean>

</beans>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  Spring