Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I get the ServletContext inside an Interceptor in Spring MVC 3?

share|improve this question

2 Answers

up vote 36 down vote accepted

Since interceptor is a bean, you can simply autowire it:

@Autowired
ServletContext context;
share|improve this answer
2  
this is gold. what a time-saver! Cheers, mate! – Peter Perháč Aug 19 '11 at 20:24

Please look at this example

http://www.vaannila.com/spring/spring-interceptor.html

and then request.getSession().getServletContext()

share|improve this answer
Thanks exactly what I wanted. – Viren Pushpanayagam Apr 21 '11 at 8:05
2  
Don't use it. You shouldn't create a session if it isn't needed. – Damian Nowak Feb 25 '12 at 19:17

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.