From 87dfa3f6fb44c3191e6ce12dbf3b1ff42bf0cdda Mon Sep 17 00:00:00 2001 From: Lukasz Lenart Date: Tue, 20 Oct 2015 08:40:25 +0200 Subject: [PATCH] WW-3161 Sets proper ActionContext to allow I18N to work (cherry picked from commit f65e38b) --- .../java/org/apache/struts2/interceptor/BackgroundProcess.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/src/main/java/org/apache/struts2/interceptor/BackgroundProcess.java b/core/src/main/java/org/apache/struts2/interceptor/BackgroundProcess.java index 79ad0173c..c8061a304 100644 --- a/core/src/main/java/org/apache/struts2/interceptor/BackgroundProcess.java +++ b/core/src/main/java/org/apache/struts2/interceptor/BackgroundProcess.java @@ -23,6 +23,7 @@ package org.apache.struts2.interceptor; import java.io.Serializable; +import com.opensymphony.xwork2.ActionContext; import com.opensymphony.xwork2.ActionInvocation; /** @@ -78,6 +79,7 @@ public class BackgroundProcess implements Serializable { * @throws Exception any exception thrown will be thrown, in turn, by the ExecuteAndWaitInterceptor */ protected void beforeInvocation() throws Exception { + ActionContext.setContext(invocation.getInvocationContext()); } /** @@ -88,6 +90,7 @@ public class BackgroundProcess implements Serializable { * @throws Exception any exception thrown will be thrown, in turn, by the ExecuteAndWaitInterceptor */ protected void afterInvocation() throws Exception { + ActionContext.setContext(null); } /**