I have to implement interceptor for logging via reflection in struts 1. Interceptors appeared in Struts 2 and there is no interceptors in struts 1, but there are some ways to implement such behaviour. I found 2 ways:
Struts Action Invocation Framework (SAIF): http://struts.sourceforge.net/saif/#interceptor-class But there is very few information about it.
AOP (aspects: org.aspectj)
What is the best way to solve this problem? Is there any other ways?