1. Use the Spring url mapping
Map model = new HashMap();
model.put("article_id", "get it from db?");
return new ModelAndView("article", model);
2. Tell the client to go to a certain page
return new ModelAndView(new RedirectView("index.jsp"));
Map model = new HashMap();
model.put("article_id", "get it from db?");
return new ModelAndView("article", model);
return new ModelAndView(new RedirectView("index.jsp"));