ServletContextListener

ServletContextListener

ApplicationListener和ServletContextListener有什么区别?您什么时候使用它们?

implements ApplicationListener<ContextStartedEvent>

implements ServletContextListener

最佳答案

一个允许您监视Spring应用程序的应用程序作用域事件(例如ContextRefreshedEvent),而另一个允许您监视ServletContext的生命周期事件(initialized/destroyed)。前者与Spring应用程序相关,后者与容器相关。

关于java - ApplicationListener与ServletContextListener,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36203891/

10-12 05:49