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.
我有一个需要使用的静态速度模板,所以我想知道是否可以自动装配它而不是这样做:
Template template = velocityEngine.getTemplate("com/templates/template.vm");
谢谢
您可以创建一个 FactoryBean 来生成速度模板作为其结果,然后 ApplicationContext 将能够将其自动装配到任何需要它的 bean 中。如果需要,我可以给你寄样品。