Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>From the <a href="http://static.springsource.org/spring-security/site/docs/3.0.x/reference/springsecurity-single.html#delegating-filter-proxy"><code>DelegatingFilterProxy</code></a> docs:</p> <blockquote> <p>Notice that the filter is actually a DelegatingFilterProxy, and not the class that will actually implement the logic of the filter. What DelegatingFilterProxy does is <strong>delegate the Filter's methods through to a bean which is obtained from the Spring application context</strong>. This enables the bean to benefit from the Spring web application context lifecycle support and configuration flexibility. <strong>The bean must implement javax.servlet.Filter and it must have the same name as that in the filter-name element</strong>. Read the Javadoc for DelegatingFilterProxy for more information</p> </blockquote> <p>You need to define a bean named <code>springSecurityFilterChain</code> that implements <code>javax.servlet.Filter</code> in your application context.</p> <p>From <a href="http://static.springsource.org/spring-security/site/docs/3.0.x/reference/ns-config.html#ns-getting-started">Getting Started with Security Namespace Configuration</a>:</p> <blockquote> <p>If you are familiar with pre-namespace versions of the framework, you can probably already guess roughly what's going on here. <strong>The <code>&lt;http&gt;</code> element is responsible for creating a <code>FilterChainProxy</code> and the filter beans which it uses</strong>. Common problems like incorrect filter ordering are no longer an issue as the filter positions are predefined.</p> </blockquote> <p>So you need at least <a href="http://static.springsource.org/spring-security/site/docs/3.0.x/reference/ns-config.html#ns-minimal">A Minimal <code>&lt;http&gt;</code> Configuration</a></p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload