Re: Newbie to Struts 2 - Question about Interceptors

2008-02-01 Thread daveck
I ended up solving the problem using an Interceptor and saving the parameter Map to the session. session.setAttribute("input_params", request.getParameterMap(); Then in my action I implemented SessionAware and utililized BeanUtils from Jakarta Commons to re-populate the properties in my action c

Re: Newbie to Struts 2 - Question about Interceptors

2008-02-01 Thread Laurie Harper
daveck wrote: Hello, I need to put up a "Confirmation Screen" in between my input jsp and my success jsp. byproduct.action -> byproduct-input.jsp byproduct-input.jsp -> confirm.jsp (If yes...) confirm.jsp -> byproduct.action byproduct.action -> byproduct-success.action Is there a Struts 2 way t