Results 1 to 2 of 2

Thread: ClassNotFoundException: FilterChainProxy

  1. #1
    Join Date
    Mar 2007
    Location
    Amsterdam
    Posts
    18

    Question ClassNotFoundException: FilterChainProxy

    After upgrading my service layer from 3.1.0.RC2 to 3.1.0.RELEASE. My integration tests startup with an exception in the log on error level.

    A quick dig shows me a strange change in the SecurityNamespaceHandler.
    In RC2 we have:
    Code:
            if (ClassUtils.isPresent("org.springframework.security.web.FilterChainProxy", getClass().getClassLoader())) {
            ...
            }
    In RELEASE we have:
    Code:
            try {
                ClassUtils.forName("org.springframework.security.web.FilterChainProxy", getClass().getClassLoader());
                ...
            } catch(Throwable t) {
                logger.error("Failed to load required web classes", t);
            }
    Am I supposed to introduce the spring-security-web module in my business layer?
    Or should I disable error logging in my log configuration for spring security?

  2. #2
    Join Date
    Jan 2008
    Posts
    1,826

    Default

    For others interested here is the relevant JIRA https://jira.springsource.org/browse/SEC-1868
    Rob Winch - @rob_winch
    Spring Security Lead
    Pivotal

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •