Guest User

Untitled

a guest
Jul 18th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. @Controller
  2. @RequestMapping("/welcome.htm")
  3. public class Welcome {
  4.  
  5. public Date getCurrentDate(){
  6. return new Date();
  7. }
  8.  
  9. @RequestMapping(method = RequestMethod.GET)
  10. public String showUserForm(ModelMap model) {
  11. model.addAttribute("action", this);
  12. return "welcome";
  13. }
  14. }
Add Comment
Please, Sign In to add comment