本文介绍了无法读取控制器在JSP上发送的数据的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试从控制器发送有关jsp的数据,并尝试使用Spring EL读取数据,但是我无法做到这一点.
I am trying to send data on jsp from my controller and trying to read it with Spring EL but i am not able to do it.
控制器:
@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>
我还需要添加其他内容吗?
Do i need to include anything else?
推荐答案
RedirectAttribute仅在重定向时使用.尝试使用return "redirect:home";
-BCP
RedirectAttribute is only used when you redirect. Try using return "redirect:home";
-BCP
这篇关于无法读取控制器在JSP上发送的数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!