diff --git a/core/src/main/java/org/apache/struts2/dispatcher/FilterDispatcher.java b/core/src/main/java/org/apache/struts2/dispatcher/FilterDispatcher.java index e14c12354..f6bd2258c 100644 --- a/core/src/main/java/org/apache/struts2/dispatcher/FilterDispatcher.java +++ b/core/src/main/java/org/apache/struts2/dispatcher/FilterDispatcher.java @@ -123,7 +123,7 @@ import com.opensymphony.xwork2.ActionContext; *
  • actionPackages - a comma-delimited list of Java packages to scan for Actions.
  • * *
  • configProviders - a comma-delimited list of Java classes that implement the - * {@link ConfigurationProvider} interface that should be used for building the {@link Configuration}.
  • + * {@link com.opensymphony.xwork2.config.ConfigurationProvider} interface that should be used for building the {@link com.opensymphony.xwork2.config.Configuration}. * *
  • * - any other parameters are treated as framework constants.
  • * @@ -537,6 +537,7 @@ public class FilterDispatcher implements StrutsStatics, Filter { while (-1 != (n = input.read(buffer))) { output.write(buffer, 0, n); } + output.flush(); // WW-1526 } /**