欢迎访问悦橙教程(wld5.com),关注java教程。悦橙教程  java问答|  每日更新
页面导航 : > > 文章正文

spring配置文件样例,spring样例,<?xml versio

来源: javaer 分享于  点击 30856 次 点评:58

spring配置文件样例,spring样例,
<?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           http://www.springframework.org/schema/beans/spring-beans.xsd">    <bean id="exampleBean" class="examples.ExampleBean">        <!-- setter injection using the nested <ref/> element -->        <property name="beanOne">            <ref bean="anotherExampleBean"/>        </property>        <!-- setter injection using the neater 'ref' attribute -->        <property name="beanTwo" ref="yetAnotherBean"/>        <property name="integerProperty" value="1"/>    </bean>    <bean id="anotherExampleBean" class="examples.AnotherBean"/>    <bean id="yetAnotherBean" class="examples.YetAnotherBean"/></beans>

相关栏目:

用户点评