Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 307
Jérôme Verstrynge Avatar asked Sep 28 '11 11:09

Jérôme Verstrynge


1 Answers

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

like image 68
Bozho Avatar answered Oct 14 '22 04:10

Bozho