Re: Obtain the ServletContext in Interceptor init method

2015-11-22 Thread Lukasz Lenart
2015-11-20 23:01 GMT+01:00 Christopher Schultz : > Is it possible to get the ServletContext from an Interceptor's init() > method? I'd like to use it for some one-time initialization rather than > grabbing it during the interceptor's intercept() method and either > attempt one-time initialization o

Obtain the ServletContext in Interceptor init method

2015-11-20 Thread Christopher Schultz
All, Is it possible to get the ServletContext from an Interceptor's init() method? I'd like to use it for some one-time initialization rather than grabbing it during the interceptor's intercept() method and either attempt one-time initialization or repeated-initialization. Thanks, -chris ---