Giriş
Şu satırı dahil ederiz
import javax.servlet.annotation.WebListener;
CDI, Servlet ve EJB startup işleri için örnekler burada
Örnek
Şöyle yaparız
@WebListener public class Config implements ServletContextListener { public void contextInitialized(ServletContextEvent event) { // Do stuff during webapp's startup. } public void contextDestroyed(ServletContextEvent event) { // Do stuff during webapp's shutdown. } }
Hiç yorum yok:
Yorum Gönder