gpt4 book ai didi

Spring Security - 在应用程序上下文中找不到可见的 WebSecurityExpressionHandler 实例

转载 作者:行者123 更新时间:2023-12-01 04:41:58 25 4
gpt4 key购买 nike

仅当用户经过身份验证时,我才在 JSP 页面中显示注销链接时遇到问题。以下是 JSP 页面的这一行出现的异常:

<sec:authorize access="isAuthenticated()">

异常(exception):

Stacktrace:
....

root cause

javax.servlet.jsp.JspException: No visible WebSecurityExpressionHandler instance could be found in the application context. There must be at least one in order to support expressions in JSP 'authorize' tags.
org.springframework.security.taglibs.authz.AuthorizeTag.getExpressionHandler(AuthorizeTag.java:100)
org.springframework.security.taglibs.authz.AuthorizeTag.authorizeUsingAccessExpression(AuthorizeTag.java:58)

这是我的 application-context-Security.xml:

<http auto-config='true' >
<intercept-url pattern="/user/**" access="ROLE_User" />
<logout logout-success-url="/hello.htm" />
</http>

<beans:bean id="daoAuthenticationProvider"
class="org.springframework.security.authentication.dao.DaoAuthenticationProvider">
<beans:property name="userDetailsService" ref="userDetailsService" />
</beans:bean>

<beans:bean id="authenticationManager"
class="org.springframework.security.authentication.ProviderManager">
<beans:property name="providers">
<beans:list>
<beans:ref local="daoAuthenticationProvider" />
</beans:list>
</beans:property>
</beans:bean>

<authentication-manager>
<authentication-provider user-service-ref="userDetailsService">
<password-encoder hash="plaintext" />
</authentication-provider>
</authentication-manager>

我知道我可以在http标记中使用use-expression =“true”,但这意味着我必须在intercept-url标记和java代码中使用表达式。有解决办法吗?

最佳答案

您只需将一个添加到您的应用程序上下文

<bean id="webexpressionHandler" class="org.springframework.security.web.access.expression.DefaultWebSecurityExpressionHandler" /> 

但最简单的方法就是在 <http> 中启用表达式配置,我们会为您添加一项。这仅意味着您必须在该 block 内使用表达式,而不是在 Java 代码中使用表达式,例如方法 @Secured注释。

关于Spring Security - 在应用程序上下文中找不到可见的 WebSecurityExpressionHandler 实例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16385894/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com