Following is my aspect:
@Configurable @Aspect public class TimingAspect { @Autowired private HttpServletRequest httpServletRequest;
Create bean for RequestContextListener. I got the same error for autowiring HttpServletRequest And the following two lines of code works for me
@Bean public RequestContextListener requestContextListener() { return new RequestContextListener(); }