我如何自动装配速度模板?
我有一个需要使用的静态速度模板,所以我想知道是否可以自动装配它而不是这样做:
Template template = velocityEngine.getTemplate("com/templates/template.vm");
谢谢
I have a static velocity template that I need to use, so I was wondering if it is possible to autowire it instead of doing:
Template template = velocityEngine.getTemplate("com/templates/template.vm");
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以创建一个 FactoryBean 来生成速度模板作为其结果,然后 ApplicationContext 将能够将其自动装配到任何需要它的 bean 中。如果需要的话我可以给你寄一份样品。
You can create a FactoryBean that generates the velocity template as its result, and then the ApplicationContext will be able to autowire it into whatever beans need it. I can send you a sample if need be.