I am using Spring MVC for an application I am building. Everything is working fine, but what I do not know how to do is a simple link with Spring. Currently, I have everything mapped with a *.htm to a controller. This all works fine because they have controllers to handle them.
What I am not sure how to do is a simple link where there is an anchor tag that has a .jsp link, and it just goes to that page, and needs no form processing.
I know this is a very basic question, but I just want to know the easiest way to configure this.
And if this is not possible, and all links must go through a controller, I would like to know.
Thank you.