自己的一份Spring的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"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-4.0.xsd
">
<bean
id="hello" class="org.feiruanstudio.springbasic.Bean"></bean>
<!-- 构造函数注入 -->
<!-- 属性函数注入 -->
<bean id="id"
class="class">
<constructor-arg value="const"/>
<property name="songName"
value="value"/>
</bean>
<!-- 静态工厂注入 -->
<bean id="staticsong"
class="org.feiruanstudio.springbasic.StaticSong"
factory-method="getInstence">
</bean>
</beans>
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。