为了账号安全,请及时绑定邮箱和手机立即绑定

请问下这种方式怎么整合spring security


网上整合都是这种需要applicationContext.xml一起使用的:

<?xml version="1.0" encoding="UTF-8"?>

<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"

         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

         xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"

         version="3.1">

    <!--spring 和security  配置文件-->

    <context-param>

        <param-name>contextConfigLocation</param-name>

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

    </context-param>

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

  <listener>

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

    </listener>

  <!--spring mvc 配置文件-->

    <servlet>

        <servlet-name>SpringMVC</servlet-name>

        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>

        <init-param>

            <param-name>contextConfigLocation</param-name>

            <param-value>classpath:spring-servlet.xml</param-value>

        </init-param>

        <load-on-startup>1</load-on-startup>

    </servlet>

    <servlet-mapping>

        <servlet-name>SpringMVC</servlet-name>

        <url-pattern>*.do</url-pattern>

    </servlet-mapping>

</web-app>

这个架构没有applicationContext.xml,如果不用这个文件的话,我直接配置:

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

配置了这个listener之后又说缺少applicationContext.xml,无解了啊o(╥﹏╥)o。

怎么整合呢?

正在回答

1 回答

applicationContext.xml,这个名字是可以改的,不用固定,是否你WEB.XML里写死了

0 回复 有任何疑惑可以回复我~
#1

avengang 提问者

谢谢?
2017-10-31 回复 有任何疑惑可以回复我~
#2

avengang 提问者

谢谢?
2017-10-31 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

请问下这种方式怎么整合spring security

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信