My code is like this:
@WebListener
public class MyListener implements ServletContextListener {
@Override
public void contextDestroyed(ServletContextEvent arg0) {
}
@Override
public void contextInitialized(ServletContextEvent arg0) {
new Thread(new Runnable() {
@Override
public void run() {
throw new RuntimeException("sdfsfds");
}
}).start();
}
}
This is my minimum deployment to tomcat 8.0.5, nothing gets printed in the console. Can anybody give some clue?
Thanks