gpt4 book ai didi

spring - 在 Spring Bean 中注入(inject) ResourceBundle

转载 作者:行者123 更新时间:2023-12-04 12:47:16 25 4
gpt4 key购买 nike

我想将一个资源包注入(inject)到一个 bean 中。我需要资源包,我无法直接获取消息。我正在使用此代码段加载资源:

 <bean id="reportMessages" class="org.springframework.context.support.ResourceBundleMessageSource">
<property name="basename">
<value>report.messages</value>
</property>

然后我可以像这样将它注入(inject)到我的 bean 中:
@Autowired
@Qualifier("reportMessages")
private ResourceBundleMessageSource reportMessages;

但这给了我一个 ResourceBundleMessageSource,它有一个 protected getResourceBundle() 方法,因此我不能调用它。

IE。我想要的是 Spring 的内置功能,可以根据语言环境读取 Message Bundle,然后将其视为单独的 bean。

最佳答案

我遇到了与 OP 相同的情况,以及 M. Deinum 的评论来包装 MessageSourceMessageSourceResourceBundle解决了我的问题。

Locale locale = Locale.getDefault();
params.put(JRParameter.REPORT_LOCALE, locale);
/* wrap the annotated messageSource with MessageSourceResourceBundle */
params.put(JRParameter.REPORT_RESOURCE_BUNDLE, new MessageSourceResourceBundle(messageSource, locale));

关于spring - 在 Spring Bean 中注入(inject) ResourceBundle,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35454426/

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