无法显示从Spring控制器返回的值

时间:2019-02-18 08:54:09

标签: spring-mvc jsp

我试图以$ {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"; 
}

0 个答案:

没有答案