Struts 2.3 - redirect vs redirectAction
问题 What is the main difference between redirect and redirectAction in Struts2.3 context. I have seen below URLs for redirect and redirectAction. I am clear about below points: redirect is like sendRedirect() method. New request is created which clear the previous value stack and action (action instance, action errors, field errors, etc) no longer available. In redirectAction , control jumps to the different action(in same or other package) redirectAction is recommended over redirect. But when I