我加入这个登录链接到我的春天应用程序:
<a href="<spring:url value="/j_spring_security_login" htmlEscape="true" />">
Sign In
</a>
我的假设是,因为这是用于访问登陆页面内置标签,春天会知道如何将它与合适的处理器没有我不必明确指定相关联。
但是,它会生成以下错误:
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'
什么是适当的方式来定义这个URL处理程序?