零、作用域种类
spring 中有七种作用于:
一、简单讲解
Bean的作用于是通过 元素的 scope 属性来制定的,以singleton为例,示例代码如下:
<!--beans.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" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"> <!--使用singleton--> <bean id="scope" class="com.itheima.instance.scope.Scope" scope="singleton"/> </beans>