1234567891011121314151617 |
- <?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">
- <!--
- scope:设置bean的作用域
- scope = "singleton | prototype"
- singleton:单例,表示获取该bean所对应的对象都是同一个
- prototype:多例,表示获取该bean所对应的对象都不是同一个
- 单例情况是使用最多的,默认也是单例,只有在某些特殊情况下才会使用多例
- -->
- <bean id="student" class="com.cdxw.spring.pojo.Student" scope="singleton">
- <property name="sid" value="1001"></property>
- <property name="sname" value="张三"></property>
- </bean>
- </beans>
|