gpt4 book ai didi

java - 如何在自定义 Velocity 工具中加载/访问 bean (@Resource)

转载 作者:行者123 更新时间:2023-12-01 05:59:35 27 4
gpt4 key购买 nike

我意识到这是一件需要做的有点时髦的事情,但我正在尝试从自定义 Velocity 工具访问我的 Spring messageSource bean。

在我们的大多数代码库中,我可以设置一个成员变量并像这样加载它:

@Resource(name = "messageSource")
private AbstractMessageSource _msgSource;

但是,在这种情况下,这不会加载 bean,我假设是因为 Velocity 工具以不允许发生正常 bean 加载的方式实例化。或者它不想为应用程序范围的 Velocity 工具初始化 bean。

该工具在 toolbox.xml 中设置如下:

<tool>
<key>calendarTool</key>
<scope>application</scope>
<class>...</class>
</tool>

我无法在网上找到任何解释如何执行此操作或为什么它不起作用的信息。

最佳答案

我所做的是在渲染 Velocity 模板的代码中,使用 applicationContext.getBean("messageSource") 从 applicationContext 检索消息源,然后将该 MessageSource 直接放入我使用的 VelocityContext 中在“messageSource”键下渲染我的模板:

VelocityContext velocityContext = new VelocityContext();
velocityContext.put("messageSource", applicationContext.getBean("messageSource"));

然后,每当我想要呈现消息键(例如在 HTML 电子邮件中)时,它看起来像:

<td>messageSource.getMessage("my.message.key", null, $locale)</td>

其中 $locale 是一个 java.util.Locale 对象,我也手动将其放置在 VelocityContext 中。如果我需要消息的任何参数,那么我会使用放入上下文中的列表工具从我通常会在模板中创建的参数列表中获取一个数组。作为旁注,您可以使用中的辅助方法org.springframework.ui.velocity.VelocityEngineUtils 类可帮助您在 Controller 或 webflow 代码中或任何其他可能渲染模板的地方渲染 Velocity 模板。

关于java - 如何在自定义 Velocity 工具中加载/访问 bean (@Resource),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1473408/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com