タグを使用してログインページでリソースバンドルを使用したいのですが、次の<spring:message code="login.name" />
ようなエラーが発生します
No message found under code 'login.name' for locale 'en_US'.
以下でこの回答を参照しましたが、うまくいきません。 SpringでJSPを直接呼び出すときにメッセージリソースバンドルを使用できますか?
これは私の春のsecurity.xmlから抜粋したサンプルです
<sec:global-method-security pre-post-annotations="enabled" />
<sec:http pattern="/css/**" security="none"/>
<sec:http pattern="/images/**" security="none"/>
<sec:http pattern="/js/**" security="none"/>
<sec:http pattern="/index.jsp" security="none"/>
<!-- <sec:http pattern="/app/addNewUser.json" security="none"/> -->
<sec:http pattern="/login.jsp" security="none"/>
<sec:http use-expressions="true">
<!--
Allow all other requests. In a real application you should
adopt a whitelisting approach where access is not allowed by default
-->
<sec:intercept-url pattern="/**" access="isAuthenticated()" />
<sec:form-login login-page='/login.jsp'
authentication-failure-url="/login.jsp?login_error=1"
default-target-url="/index.jsp" />
<sec:logout logout-success-url="/login.jsp" delete-cookies="JSESSIONID"/>
<sec:remember-me />
なにか提案を ?ログイン要求はコントローラーを介してルーティングする必要があるという私の認識では、リソースバンドルにアクセスできるようになりますが、その方法は?