我正在尝试从控制器发送jsp上的数据,并尝试使用Spring EL读取它,但我无法做到这一点。
控制器:
@RequestMapping("/home") public String StudentHome(RedirectAttributes ra){ String msg="mydata"; ra.addFlashAttribute("msg", msg); return "home"; }
jsp:
<%@taglib uri="http://www.springframework.org/tags/form" prefix="form"%> <%@page contentType="text/html" pageEncoding="UTF-8"%> <!DOCTYPE html> <html> <head> </head> <body> ${msg} </body> </html>
我还需要添加其他内容吗?
RedirectAttribute仅在重定向时使用。尝试使用return "redirect:home"; -BCP
return "redirect:home";