gpt4 book ai didi

java - Spring Security 未应用于我的 URL

转载 作者:行者123 更新时间:2023-12-02 11:17:22 25 4
gpt4 key购买 nike

我设置了一个新的 Spring Web MVC 应用程序,并为其引入了 spring-security。这是我用于 spring-security 的配置

applicationContext-security.xml

<?xml version="1.0" encoding="UTF-8"?>
<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.2.xsd">

<!-- enable use-expressions -->
<http auto-config="true" use-expressions="true">
<intercept-url pattern="/login" access="permitAll"/>
<intercept-url pattern="/**" access="isAuthenticated()" />
<form-login
login-page="/login"
authentication-failure-url="/login?error"
username-parameter="username"
password-parameter="password" />
<logout logout-success-url="/login?logout" />
</http>

<!-- Select users and user_roles from database -->
<authentication-manager>
<authentication-provider>
<jdbc-user-service data-source-ref="datasource"
users-by-username-query=
"select username,password, enabled from user where username=?"
/>
</authentication-provider>
</authentication-manager>

我还使用 Hibernate 5 来访问我的数据库

applicationContext-db.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:context="http://www.springframework.org/schema/context"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd">

<context:property-placeholder location="classpath:db/database.properties"/>
<context:component-scan base-package="com.medkhelifi.tutorials.spring.springregistration" />
<context:annotation-config />

<bean id="userDao" class="com.medkhelifi.tutorials.spring.springregistration.dao.impl.UserDaoImpl"/>

<!-- Hibernate Factory -->
<bean id="datasource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="${database.driver}"/>
<property name="url" value="${database.url}"/>
<property name="username" value="${database.username}"/>
<property name="password" value="${database.password}"/>
</bean>

<bean id="hibernateFactory" class="org.springframework.orm.hibernate5.LocalSessionFactoryBean">
<property name="dataSource" ref="datasource"/>
<property name="annotatedClasses">
<list>
<value>com.medkhelifi.tutorials.spring.springregistration.model.User</value>
</list>
</property>
</bean>

<bean id="transcationManager" class="org.springframework.orm.hibernate5.HibernateTransactionManager">
<property name="sessionFactory" ref="hibernateFactory"/>
</bean>
<tx:annotation-driven transaction-manager="transcationManager" />

我创建了两个带有两个 Controller 的 jsp 页面:

  • /jsp/login.jsp
  • /jsp/hello.jsp

当我运行我的应用程序时,我可以不受任何限制地访问我的index.jsp 和我的/jsp/hello.jsp。我不知道我是否遗漏了一些东西。

(抱歉我的英语不好)

最佳答案

这是一个老问题,但我想提一下为什么同样的问题对我不起作用的根本原因:

我还使用了基于 XML 的配置,但似乎根本没有调用 Spring Security,因为甚至没有默认 header 。这是因为我没有将 Spring 的 DelegatingFilterProxy 添加到 web.xml 中,如下所述:https://docs.spring.io/spring-security/site/docs/5.0.x/reference/html/ns-config.html#ns-web-xml

添加过滤器后,Spring Security 开始设置默认 header ,我可以继续添加自定义要求。

亲切的问候

史蒂夫

关于java - Spring Security 未应用于我的 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50175885/

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