假设我有一个这样的消息源 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 在项目内的文件夹属性中,我将如何找到文件?