我在创建spring
mvc
项目时遇到问题,我的JSP
页面未按预期呈现,下面是代码
我的控制器是
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView;
@Controller
public class HelloController {
@RequestMapping("/welcome")
public ModelAndView helloWorld(){
ModelAndView model=new ModelAndView("HelloPage");
model.addObject("msg","hello page");
return model;
}
}
jsp页面是
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<h2> {$msg}</h2>
</body>
</html>
输出
答案 0 :(得分:3)
你几乎得到了它,但你有一个错字:
<h2> {$msg}</h2>
Spring使用${nameOfAttr}
来引用bean / model属性,所以......你必须写:
<h2> ${msg}</h2>
您的信息将按预期显示。有关详细信息,请check this link