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

2024-12-05 01:00:11
推荐回答(4个)
回答1:

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

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

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

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

回答2:

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

回答3:

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

回答4:

默认就是单例的吧