I am using Spring MVC 3.0
I have a guestbook.jsp page where I want to create a link that points to GuestBookController\'s login method.
This is a simple task
Spring MVC uses the standard JSTL tags in JSPs so:
Guest Book
In your controller:
@RequestMapping(value = "/guestBook")
public String handleGuestBook() { ... }