Struts 2 ActionContext用法详细教程

  1. Struts 2 ActionContext教程
ActionContext是在其中执行动作的对象的容器。存储在ActionContext中的值在每个线程(即ThreadLocal)中都是唯一的。因此, 我们不需要使操作线程安全。
【Struts 2 ActionContext用法详细教程】我们可以通过调用ActionContext类的getContext()方法来获取ActionContext的引用。这是静态工厂方法。例如:
ActionContext context = ActionContext.getContext();

    推荐阅读