The ActionContext is thread local which means that values stored in the ActionContext are unique per thread. See the {@link ThreadLocal} class for more information. The benefit ofthis is you don't need to worry about a user specific action context, you just get it:
ActionContext context = ActionContext.getContext();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|