gpt4 book ai didi

java - 尝试重定向时出现 Spring Security 错误 "Access is Denied"

转载 作者:行者123 更新时间:2023-12-01 15:04:26 24 4
gpt4 key购买 nike

在我的项目中实现了 Spring Security 的实现,但我在定义重定向时遇到了问题。当访问被锁定时,我需要将该用户重定向到特定的 URL。

当我放置标签“access-denied-handler”时,我希望他重定向到 bean 上定义的页面,但不会发生。

安全上下文.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:security="http://www.springframework.org/schema/security"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/security
http://www.springframework.org/schema/security/spring-security-3.1.xsd">

<!-- Method Security -->
<security:global-method-security pre-post-annotations="enabled">
<security:expression-handler ref="expressionHandler" />
</security:global-method-security>


<bean id="expressionHandler" class="org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler">
<property name="permissionEvaluator" ref="permissionEvaluator"/>
</bean>

<bean id="permissionEvaluator" class="net.pontoall.hemisphere.security.HemispherePermissionEvaluator"/>

<!-- Publicos -->
<security:http pattern="/layouts/**" security="none" />
<security:http pattern="/messages/**" security="none" />
<security:http pattern="/test/**" security="none" />
<security:http pattern="/resources/**" security="none" />
<security:http pattern="/login/**" security="none" />
<security:http pattern="/install/**" security="none" />
<security:http pattern="/cobredireto/**" security="none" />
<security:http pattern="/hotsite/**" security="none" />
<security:http pattern="/captcha.jpg" security="none" />

<security:http auto-config="true" use-expressions="true">

<security:access-denied-handler ref="HemisphereAccessDeniedHandler"/>

<security:intercept-url pattern="/**" access="isAuthenticated()" />

<security:form-login login-page="/login" default-target-url="/home"
authentication-failure-url="/login?logout=true"
authentication-success-handler-ref="authenticationSuccessHandler"
authentication-failure-handler-ref="authenticationFailureHandler"/>

<security:logout logout-url="/j_spring_security_logout" invalidate-session="true" success-handler-ref="logoutHandler"/>
</security:http>

<!-- Authentication Manager -->
<security:authentication-manager alias="authenticationManager">
<!-- Custom Authentication provider -->
<security:authentication-provider ref="hemisphereAuthenticationProvider"/>
</security:authentication-manager>

<bean id="hemisphereAuthenticationProvider" class="net.pontoall.hemisphere.security.HemisphereAuthenticationProvider">
<property name="userDetailsService" ref="userDetailService"/>
</bean>

<bean id="authenticationSuccessHandler" class="net.pontoall.hemisphere.security.HemisphereAuthenticationSuccessHandler">
<property name="defaultTargetUrl" value="/home" />
<property name="alwaysUseDefaultTargetUrl" value="no" />
</bean>

<bean id="authenticationFailureHandler" class="net.pontoall.hemisphere.security.HemisphereAuthenticationFailureHandler">
<property name="defaultFailureUrl" value="/login" />
</bean>

<bean id="logoutHandler" class="net.pontoall.hemisphere.security.HemisphereLogoutHandler"/>

<bean id="HemisphereAccessDeniedHandler" class="net.pontoall.hemisphere.security.HemisphereAccessDeniedHandler">
<property name="errorPage" value="/error/permissao"/>
</bean>

Bean Java - HemisphereAccessDeniedHandler.java:

public class HemisphereAccessDeniedHandler implements AccessDeniedHandler {

private String errorPage;

public String getErrorPage() {
return errorPage;
}

public void setErrorPage(String errorPage) {

if (errorPage == "") {
errorPage = "/";
}

this.errorPage = errorPage;
}

@Override
public void handle(HttpServletRequest request, HttpServletResponse response, AccessDeniedException accessDeniedException) throws IOException, ServletException {
// Set the 403 status code.
response.setStatus(HttpServletResponse.SC_FORBIDDEN);
response.sendRedirect(errorPage);
}

}

最佳答案

我发现发生了什么事。我有一个 Spring MVC @ExceptionHandler 并且他正在捕获错误。

@ExceptionHandler
public ResponseEntity<String> handle(Exception exception, HttpServletRequest requestMain) {
String erro = exception.getMessage();
PusherRequest request = new PusherRequest("hemisphere-web", requestMain.getSession().getId());
request.triggerPush(erro);

HttpHeaders headers = new HttpHeaders();
headers.setContentType(MediaType.APPLICATION_JSON);

return new ResponseEntity<String>(exception.getMessage(), headers, HttpStatus.FORBIDDEN);
}

关于java - 尝试重定向时出现 Spring Security 错误 "Access is Denied",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13162967/

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