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.
我有一个要求,我想在我的应用程序上下文中的任何其他 bean 之前初始化一个 bean。一种方法是在每个其他 bean 上使用“依赖”,但它太冗长,因为我的应用程序上下文中有很多 bean。
有没有其他方法可以做到这一点。我已经阅读了为此实现 ServletContext 的 abt,但我认为这不会起作用,因为这与 Spring 无关。
请让我知道您对此的看法。
谢谢,劳纳克
确保您的 bean 在您的 context.xml 中首先出现,并且它将首先被实例化。你可以做一个简单的测试来验证。