I\'m creating an example for struts2 interceptors. I created a simple login page and used a custom interceptor class to encrypt the input. But the interceptor is reading the
If you want to access parameters, the params interceptor should go first
/success.jsp
/index.jsp
Your problem is that those parameters don't go to the valueStack, and you should probably get them from the action context.
Map params = ActionContext.getContext().getParameters();
But after params interceptor they should be there.