0

假设我有一个这样的消息源 bean:

<bean id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource">
<property>
    <list>
        <value>mymessages</value>
        <value>mymessages_en_US</value>
    </list>
</property>

</bean>

这仅在我的 .properties 与 spring.xml 处于同一级别时才有效,如果我的 .properties 在项目内的文件夹属性中,我将如何找到文件?

4

1 回答 1

1

ResourceBundleMessasgeSource 从类路径加载资源包。

如果您确保属性文件所在的文件夹位于类路径上,那么 Spring 应该加载它们。

于 2013-10-09T19:43:16.647 回答