ApplicationListener和ServletContextListener有什么区别?你什么时候使用它们?
implements ApplicationListener<ContextStartedEvent>
implements ServletContextListener
答案 0 :(得分:1)
一个允许您监视Spring应用程序的应用程序范围事件(例如ContextRefreshedEvent),另一个允许您监视ServletContext的生命周期事件(initialized/destroyed)。前者与Spring相关,后者与容器相关。