Re: How to pass value from AbstractInterceptor to ActionSupport classes

2022-02-03 Thread Lukasz Lenart
Hi, I'm not sure if I understood your problem but the simplest way to pass a value from an interceptor into an action is just by calling setter Here you have an example how *Aware interfaces work (which is a better option than do it as you did with ActionContext.getContext().get(org.apache.struts

How to pass value from AbstractInterceptor to ActionSupport classes

2022-02-02 Thread albert kao
My application likes to pass value from AbstractInterceptor to two ActionSupport classes (codes below). When the user presses the Back button of a browser, hasValue() return true for class Action1. When the user presses the Back button of a browser, hasValue() return null for class Action2. My log