My application is built on Spring MVC. I have write a code that get attributes from context using statement
ServletRequestAttributes attr = (ServletRequestAttributes) RequestContextHolder.currentRequestAttributes();
when jBPM timer expires. when above statement throws exception with message
No thread-bound request found: Are you referring to request attributes outside of an actual web request, or processing a request outside of the originally receiving thread?
If you are actually operating within a web request and still receive this message, your code is probably running outside of DispatcherServlet/DispatcherPortlet:
In this case, use RequestContextListener or RequestContextFilter to expose the current request.
although i have added RequestContextListener and RequestContextFilter in ServletContext but didn't get any success.
Any help is highly appreciated