创建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>


下面是输出

java - Spring模型对象未在JSP页面上呈现-LMLPHP

最佳答案

差不多了,但是这里有一个错字:

<h2> {$msg}</h2>


Spring使用${nameOfAttr}引用bean /模型属性,因此...您必须编写:

<h2> ${msg}</h2>


并且您的消息将按预期显示。有关更多信息,请check this link

07-26 07:49