Fill a form with saved cookies
问题 I have an action class that saves my cookies like this: public String execute() { // Save to cookie Cookie name = new Cookie("name", userInfo.getName() ); name.setMaxAge(60*60*24*365); // Make the cookie last a year! servletResponse.addCookie(name); } If I submit my form, I can see the cookies on the browser that has been created and saved. When the user submits, they get redirected to a new page, a page with all the stored information that they just created. I want the user to be able to go