Servlet 3.0: where is @WebServletContextListener?

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?

Upvotes: 36

Views: 8330

Answers (1)

Bozho
Bozho

Reputation: 597402

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

Upvotes: 49

Related Questions