Guest User

Untitled

a guest
Feb 18th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. <html>
  2. <head> <meta charset="ISO-8859-1">
  3. <title>HOME</title>
  4. </head>
  5. <body>
  6. <div align="center"> ${mesg} </div>
  7. </body>
  8. </html>
  9.  
  10.  
  11. @RequestMapping(value="/savefile",method=RequestMethod.POST)
  12. public String getStatus(@PathParam("pwd") String Pwd,ModelMap map){
  13. System.out.println(":::pwd::"+Pwd);
  14. map.addAttribute("mesg", "Welcome to mBOK");
  15.  
  16. return "Success";
  17. }
Add Comment
Please, Sign In to add comment