我试图以$ {mesg}的形式显示,但没有显示来自Spring控制器的内容。我尝试了很多方法,但是没有运气。
<html>
<head> <meta charset="ISO-8859-1">
<title>HOME</title>
</head>
<body>
<div align="center"> ${mesg} </div>
</body>
</html>
@RequestMapping(value="/savefile",method=RequestMethod.POST)
public String getStatus(@PathParam("pwd") String Pwd,ModelMap map){
System.out.println(":::pwd::"+Pwd);
map.addAttribute("mesg", "Welcome to mBOK");
return "Success";
}