gpt4 book ai didi

Spring security 自定义登录重定向冲突

转载 作者:行者123 更新时间:2023-12-01 23:32:38 25 4
gpt4 key购买 nike

我使用 spring security 创建了一个自定义登录表单,它在某个时间点工作得很好,但有时在登录 URL 重定向到 css 或图像或 js 文件夹后。在我点击刷新后它工作正常,我不知道我的 Spring 安全有什么问题。

自定义登录页面

<form:form class="form-vertical login-form"   action="j_spring_security_check" method="post">
<h3 class="form-title">Login to your account</h3>
<input type="text" autocomplete="off" placeholder="Username" name="j_username"/>
<input type="password" autocomplete="off" placeholder="Password" name="j_password"/>

<font color="red">
<span>${sessionScope["SPRING_SECURITY_LAST_EXCEPTION"].message}</span>
</font>

</form:form>

安全上下文 xml
<beans:beans xmlns="http://www.springframework.org/schema/security"
xmlns:beans="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/security
http://www.springframework.org/schema/security/spring-security-3.1.xsd">

<!-- We will be defining all security related configurations in this file -->
<http pattern="/" security="none"/>
<http use-expressions="true">
<intercept-url pattern="/**" access="isAuthenticated()"/> <!-- this means all URL in this app will be checked if user is authenticated -->
<!-- We will just use the built-in form login page in Spring -->
<form-login login-page="/" login-processing-url="/j_spring_security_check" default-target-url="/home" authentication-failure-url="/"/>
<logout logout-url="/logout" logout-success-url="/"/> <!-- the logout url we will use in JSP -->
</http>

<authentication-manager>
<authentication-provider>
<!-- Normally, in this part, you will declare the source of your users
But for simplicity, we will hard-code the users. This is very useful while testing setup -->
<user-service>
<user name="admin" password="admin" authorities="Admin, User"/>
<user name="user" password="user" authorities="User"/>
</user-service>
</authentication-provider>
</authentication-manager>

</beans:beans>

登录 Controller
@RequestMapping("/")
public String loginForm()
{
return "login";
}

网页xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
<display-name>YESKAY</display-name>

<!-- Spring security -->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
/WEB-INF/spring-servlet.xml
/WEB-INF/security-context.xml
</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<listener>
<listener-class>org.springframework.web.util.Log4jConfigListener</listener-class>
</listener>

<!-- Define a filter to enable Spring Security, be sure to use the suggested name 'springSecurityFilterChain' -->
<filter>
<filter-name>springSecurityFilterChain</filter-name>
<filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
</filter>
<filter-mapping>
<filter-name>springSecurityFilterChain</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>


<servlet>
<servlet-name>spring</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>spring</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>


<!-- <welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>-->
</web-app>

成功登录网址
http://localhost:8080/PROJECT/home

有时重定向到以下网址或其他内容
http://localhost:8080/PROJECT/resources/assets/plugins/font-awesome/font/fontawesome-webfont.ttf?v=3.2.0

我的文件夹结构

enter image description here

最佳答案

您需要从 Spring Security 的过滤器中省略对静态资源路径的请求,否则它可能会混淆触发登录的实际请求(因为浏览器也会发送对页面资源(例如图像)的请求)。

添加类似的东西

<http pattern="/resources/**" security="none"/>

到您的配置顶部应该这样做。

关于Spring security 自定义登录重定向冲突,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28187037/

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