Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 Spring MVC Web 应用程序。我想添加启动和关闭消息。写它们的最佳位置在哪里? 例如 - “webapp 已成功启动!” - “webapp 已成功关闭!”
我想确保仅在加载所有 bean 后才显示启动消息。
您可以扩展ContextLoaderListener然后覆盖contextInitialized()andcontextDestroyed()方法来编写日志消息或任何您想要的。
ContextLoaderListener
contextInitialized()
contextDestroyed()