gpt4 book ai didi

spring - 加载资源包 : Spring

转载 作者:行者123 更新时间:2023-12-02 22:39:34 25 4
gpt4 key购买 nike

我正在尝试在 Spring 中使用 ResourceBundleMessageSource。这是我的项目结构: enter image description here

这是xml配置:

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

当我尝试加载应用程序上下文时,出现以下异常:

Jun 7, 2012 2:44:00 PM org.springframework.context.support.ResourceBundleMessageSource getResourceBundle
WARNING: ResourceBundle [messages] not found for MessageSource: Can't find bundle for base name messages, locale en_US
Exception in thread "main" org.springframework.context.NoSuchMessageException: No message found under code 'user.welcome' for locale 'en_US'.
at org.springframework.context.support.AbstractMessageSource.getMessage(AbstractMessageSource.java:135)
at org.springframework.context.support.AbstractApplicationContext.getMessage(AbstractApplicationContext.java:1192)
at com.pramati.core.MessageResolver.getMessage(MessageResolver.java:19)

如果我将我的资源包文件直接放在资源文件夹下,我就不会收到此错误。它工作正常。有人可以告诉我如何通过将资源包放在 src/main/resources 的子目录中来完成这项工作吗?

最佳答案

您需要在此处提供文件夹名称 -

<property name="basename">
<value>resourceBundles/messages</value>
</property>

关于spring - 加载资源包 : Spring,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10929179/

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