我在 spring mvc 中使用了一个非常基本的基本控制器
...
@RequestMapping("/welcome")
public ModelAndView helloWorld() {
String message = "Hello World, Spring 3.0!";
return new ModelAndView("helloteste", "message", message);
}
...
但是从 jsp 访问它时,什么也没有显示。Jsp波纹管
<html>
<head>
<title>Spring 3.0 MVC Series: Hello World </title>
</head>
<body>
${message}
</body>
</html>
屏幕上的结果(服务器不解析标签...)
${message}
但是,如果我直接从请求的属性中获取信息,它就可以工作......
<%
String s = (String ) request.getAttribute("message");
out.print(s);
%>
为什么符号 ${...} 不起作用???