I added this login link to my Spring app:
<a href="<spring:url value="/j_spring_security_login" htmlEscape="true" />">
Sign In
</a>
My assumption was that because this is a built-in tag for accessing the login page, Spring would know how to associate this with an appropriate handler without me having to specify it explicitly.
However, it generates the following error:
org.springframework.web.servlet.DispatcherServlet noHandlerFound
WARNING: No mapping found for HTTP request with URI
[/app/j_spring_security_login] in DispatcherServlet with name 'dispatcher'
What's the appropriate way to define the handler for this URL?