企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
~~~ <?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 https://www.springframework.org/schema/beans/spring-beans.xsd"> <!--把对象的创建交给spring来管理--> <!-- bean的作用范围调整 bean标签的scope属性: 作用:用于指定bean的作用范围 取值: 1.singleton:单个的,单例(默认值) 2.prototype:原型,原生的,多例 3.request:作用于web应用的请求范围 4.session:作用于web应用的会话范围 5.global-session:作用于集群环境的会话范围(全局会话范围),当不是集群环境时,它就是session --> <bean id="accountService1" class="com.itheima.service.impl.AccountServiceImpl1" scope="prototype"></bean> </beans> ~~~