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