Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to inject a spring bean into a filter, but can't make it work.

The bean injected is always "null". I succeed autowiring this same bean in Controllers and HandlerInterceptors so it's correctly annotated.

The filter class is under the same base-package of the rest of Controllers.

This is the relevant part of my web.xml

  <filter>
    <filter-name>CheckSession</filter-name>
    <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
  </filter>
  <filter-mapping>
    <filter-name>CheckSession</filter-name>
    <url-pattern>/panel/*</url-pattern>
  </filter-mapping>

This is the code for the filter

@Component public class CheckSession extends OncePerRequestFilter implements Filter {

@Autowired private Usuario usuario;

@Override
protected void doFilterInternal(HttpServletRequest request,
        HttpServletResponse response, FilterChain chain)
        throws ServletException, IOException {

    //  always null
    System.out.println("autowired " + usuario);
    chain.doFilter(request,  response);
    }
}

The filter is triggering on every request.

These are the annotations in the "Usuario" bean

@Component
@Scope(value="session", proxyMode=ScopedProxyMode.TARGET_CLASS)

public class Usuario implements java.io.Serializable { ... }

What am i missing? Thanks!

share|improve this question

2 Answers

Try to explicitly define the name for your CheckSession bean and see if that helps... Like this:

@Component("CheckSession")
public class CheckSession extends OncePerRequestFilter implements Filter {
    @Autowired private Usuario usuario;

    @Override
    protected void doFilterInternal(HttpServletRequest request,
            HttpServletResponse response, FilterChain chain)
            throws ServletException, IOException {

        //  always null
        System.out.println("autowired " + usuario);
        chain.doFilter(request,  response);
    }
}

The key part is this: @Component("CheckSession")

And to make things prettier and easier to deal with down the road, I would camelCase the name and rename it to "checkSession" everywhere (de-capitalize first letter).

share|improve this answer
This worked for me and I was having the same issue. – theboulderer Jan 22 at 17:53

Shouldn't you use your exact class name in 'filter-class'? And are you sure your filter is managed by Spring? Shouldn't you use @Configurable here?

share|improve this answer
The filter's name is CheckSession, the same as indicated in "filter-name". If i change that name in "filter-name" I get a "NoSuchBeanDefinitionException" from Spring. So i guess yes, the filter is being managed by Spring (through DelegatingFilterProxy) but the autowire mechanism still isn't working... :( – metacortechs Mar 13 '12 at 21:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.