如何在JSP中显示Spring Security Auth异常的自定义错误消息

我想在jsp中显示针对Spring安全认证异常的自定义错误消息。

对于错误的用户名或密码,

spring displays : Bad credentials

what I need : Username/Password entered is incorrect.

对于禁用的用户,

spring displays : User is disabled

what I need : Your account is diabled, please contact administrator.

我是否需要为此重写AuthenticationProcessingFilter?否则我可以在jsp本身中做一些事情以找到认证异常密钥并显示不同的消息

回答:

在spring安全jar内的messages.properties中重新定义属性。例如,添加到类路径myMessages.properties并将消息源添加到上下文:

AbstractUserDetailsAuthenticationProvider.badCredentials=Username/Password entered is incorrect.

AbstractUserDetailsAuthenticationProvider.disabled=Your account is diabled, please contact administrator.

在Salvin Francis:

  1. 将myMessages.properties添加到WEB-INF / classes中的WAR文件。
  2. 将此bean添加到spring上下文配置文件

消息源Bean

<bean id="messageSource"   

class="org.springframework.context.support.ResourceBundleMessageSource">

<property name="basenames">

<list>

<value>myMessages</value>

</list>

</property>

</bean>

以上是 如何在JSP中显示Spring Security Auth异常的自定义错误消息 的全部内容, 来源链接: utcz.com/qa/414634.html

回到顶部