💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
### @Scope * @Scope\(ConfigurableBeanFactory.SCOPE\_PROTOTYPE\)或@Scope\("prototype"\) * @Scope\(ConfigurableBeanFactory.SCOPE\_SINGLETON\)或@Scope\("singleton"\) * **XML配置** ``` <bean id="virtualProductService" class="com.san.mpa.service.VirtualProductService" scope="prototype"> <aop:scoped-proxy>是与@Scope注解的proxyMode属性功能相同的Spring XML配置元素 ``` * **注解配置** ``` @Scope("prototype") public class CustInfoList extends HttpServlet {} ```