diff --git a/xwork-core/src/main/java/com/opensymphony/xwork2/interceptor/ChainingInterceptor.java b/xwork-core/src/main/java/com/opensymphony/xwork2/interceptor/ChainingInterceptor.java index 602e4529c..783a472c0 100644 --- a/xwork-core/src/main/java/com/opensymphony/xwork2/interceptor/ChainingInterceptor.java +++ b/xwork-core/src/main/java/com/opensymphony/xwork2/interceptor/ChainingInterceptor.java @@ -46,37 +46,37 @@ import java.util.*; * is through the use of the chain result type, which combines with this interceptor to make up the action * chaining feature. *
+ * Note: By default Errors, Field errors and Message aren't copied during chaining, to change the behaviour you can specify + * the below three constants in struts.properties or struts.xml: + *+ *
+ * Example: + *
+ * <constant name="struts.xwork.chaining.copyErrors" value="true"/> + *+ * * Note: By default actionErrors and actionMessages are excluded when copping object's properties. * * - * - * Interceptor parameters: - * + * Interceptor parameters: * - * *
* There are no known extension points to this interceptor. - *
+ * * - * - * Example code: - * + * Example code: ** *