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.
当我的应用程序部署到 Web 容器中时,我需要运行一些代码——并且该类需要被 Spring 容器注入。
我尝试实现ServletContextListener并将该类注册为侦听器,但注入不起作用。
ServletContextListener
这样做的惯用方式是什么?
为了让你的类可以被 Spring 容器注入,你可以扩展SpringBeanAutowiringSupport。