Explain interceptors? Which interceptor is responsible for setting action's JavaBean properties?
Hi Samar,
The interceptor is pre-processor. It processes the request before the execution and after the execution. The
com.opensymphony.xwork2.interceptor.ParametersInterceptor
is the interceptor class who sets the action's JavaBean properties from request.
Thanks.