执行了获取表单数据操作后,为什么springmvc返回当前jsp页面后所有内容消失了呢?

img

img
我在这个页面用jstl循环了数据,但执行完操作再返回的时候,这些数据都不进了。

@RequestMapping("/find")
 public String index(Model map) {
    map.addAttribute("list", user.getOne(null));
   return "/app/page1";
 }
@RequestMapping("/save")
 public String save(Model map) {

   return index(map);
 }

跳转到其他页面都没有问题,回到原本的页面就不行了

是的

@RequestMapping("/find")
public String index() {
map.addAttribute("list", user.getOne(null));
return "/app/page1";
}
@RequestMapping("/save")
public String save() {

return index(map);