Servlet 3.0: where is @WebServletContextListener?

Jérôme Verstrynge picture Jérôme Verstrynge · Sep 28, 2011 · Viewed 8.1k times · Source

I am trying to follow a Servlet 3.0 tutorial which refers to @WebServletContextListener. However, I cannot find such an annotation in my javaee-web-api-6.0.jar dependency (I am using maven).

So, where is @WebServletContextListener?

Answer

Bozho picture Bozho · Sep 28, 2011

The annotation is called @WebListener. And you still have to implement ServletContextListener.