46

参考資料から春のセキュリティを学んでいます。リリース 3.1.2.RELEASE。で述べたようにsecurity:http、このようなタグを構成しました

security-context.xml

<security:http auto-config="true">
        <security:intercept-url pattern="/**" access="ROLE_USER"/>
    </security:http>

web.xml

<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath*:*-context.xml</param-value>
  </context-param>

  <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>

  <listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
  </listener>

  <servlet>
    <servlet-name>security</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
  </servlet>

  <servlet-mapping>
    <servlet-name>security</servlet-name>
    <url-pattern>/</url-pattern>
  </servlet-mapping>

security-servlet.xml

<context:component-scan base-package="com.pokuri.security.mvc.controllers"/>

    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/>
        <property name="prefix" value="/WEB-INF/page/"/>
        <property name="suffix" value=".jsp"/>
    </bean>

しかし、アプリケーションを起動すると、この例外が発生します。セキュリティ構成を削除すると、Spring Web アプリケーションが正常に動作します。私はstackoverflowで同じ種類の質問をしました。しかし、運がありません。

4

6 に答える 6

67

問題の原因は、Web アプリを起動したときに、Spring Security の xml 構成ファイルが読み込まれていないことにあると思います。

これを修正するには、次のように web.xml ですべての XML 構成ファイルを指定する必要があります。

<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>/WEB-INF/spring-security.xml, /WEB-INF/applicationContext.xml</param-value>
</context-param>

構成ファイルがクラスパス (WEB-INF フォルダーまたはそのサブフォルダーではない) にある場合は、そのような方法で構成ファイルのリストを指定できます。

...
<param-value>
    classpath:applicationContext.xml,
    classpath:spitter-security.xml
</param-value>
...

また、構成ファイルをロードする特別なリスナーを追加する必要があります。

<listener>
    <listener-class>
        org.springframework.web.context.ContextLoaderListener
    </listener-class>
</listener>
于 2012-08-25T19:49:15.553 に答える
13

Spring が要求したように、applicationContext.xml に Bean 定義を追加しました。

<bean id="springSecurityFilterChain" class="org.springframework.web.filter.DelegatingFilterProxy"/>
于 2015-06-23T19:13:26.033 に答える
5

これをあなたのweb.xmlに追加してください

<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>/WEB-INF/root-context.xml, /WEB-INF/spring-security.xml</param-value>
</context-param>

<!-- Creates the Spring Container shared by all Servlets and Filters -->
<listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>

        <!-- filter declaration for Spring Security -->
<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>
于 2015-02-20T20:14:30.927 に答える
1

誰かに役立つ場合に備えて、パッケージの名前を変更しましたが、Eclipse は@ComponentScanパスを自動更新しないため、それも変更してください。

@ComponentScan(basePackages = "com.package.spring")
于 2018-08-27T08:19:15.550 に答える
0

<http/>Spring Security 5.2.1-SNAPSHOT の時点で、セキュリティ XML 構成で要素を宣言していなかったときに、このエラーが発生しました。

サンプルを試していて、次のような構成がありました

    <b:beans xmlns="http://www.springframework.org/schema/security" xmlns:b="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans.xsd
                        http://www.springframework.org/schema/security https://www.springframework.org/schema/security/spring-security.xsd">

    <user-service>
        <user name="user" password="{noop}password" authorities="ROLE_USER" />
    </user-service>
</b:beans>

以下のように追加するように変更する必要がありました<http/>

<b:beans xmlns="http://www.springframework.org/schema/security" xmlns:b="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans.xsd
                        http://www.springframework.org/schema/security https://www.springframework.org/schema/security/spring-security.xsd">

    <http />
    <user-service>
        <user name="user" password="{noop}password" authorities="ROLE_USER" />
    </user-service>
</b:beans>
于 2019-10-28T05:44:37.430 に答える