struts2 怎么将action注解为单例模式

2024年12月05日 01:00
有4个网友回答
网友(1):

struts2声明单例模式的方法如下:

在Spring 配置文件中 或者使用注解。

单例模式(也叫单件模式)的作用就是保证在整个应用程序的生命周期中,

任何一个时刻,单例类的实例都只存在一个(当然也可以不存在)。

网友(2):

你说的是在跟spring集成时候吗? spring默认的就是单例的 但是struts2要多例的 在struts2 action类的注解 @controller 下面添加@scope("prototype")

网友(3):

注入action的时候添加scope="prototype"属性

网友(4):

默认就是单例的吧