个性化阅读
专注于IT技术分析

Struts 2 ActionContext用法详细教程

  1. Struts 2 ActionContext教程

ActionContext是在其中执行动作的对象的容器。存储在ActionContext中的值在每个线程(即ThreadLocal)中都是唯一的。因此, 我们不需要使操作线程安全。

我们可以通过调用ActionContext类的getContext()方法来获取ActionContext的引用。这是静态工厂方法。例如:

ActionContext context = ActionContext.getContext();
赞(0)
未经允许不得转载:srcmini » Struts 2 ActionContext用法详细教程

评论 抢沙发

评论前必须登录!