标签:nat eclips 目录 路径 org source oca encoding 方案
使用IntelliJ IDEA开发工具解决方案:
总结原因,解决方案:
1,在使用messageSource.getMessage方法时,参数1的键名跟属性文件中键名不一致,比如Controller中是name ,而配置文件中却是names
2,因为使用springMvc提供了MessageSource类,所有也顺带给我们配置好了bean,我们只需注入(按名称注入)就行,但是要去总配置文件,也就是application,properties配置中添加
#为了spring找到资源文件
spring.messages.basename=message
使用Exlicps开发工具解决方案
总结原因:
<bean id="messageSource" class="org.springframework.context.support.ReloadableResourceBundleMessageSource">
<property name="basenames">
<list>
<!--默认到当前web应用下找 -->
<value>classpath*:messages</value>
<value>classpath:org/hibernate/validator/ValidationMessages</value>
</list>
</property>
<property name="useCodeAsDefaultMessage" value="false"/>
<property name="defaultEncoding" value="UTF-8"/>
<property name="cacheSeconds" value="60"/>
</bean>
改变路径位置:比如你的属性文件放在resources/message/messages.propeties,那么就改变路径为:
<bean id="messageSource" class="org.springframework.context.support.ReloadableResourceBundleMessageSource">
<property name="basenames">
<list>
<!-- 默认到当前web应用下找 -->
<value>classpath:/messages/messages</value>
<value>classpath:/messages/ValidationMessages</value>
</list>
</property>
<property name="useCodeAsDefaultMessage" value="false"/>
<property name="defaultEncoding" value="UTF-8"/>
<property name="cacheSeconds" value="60"/>
</bean>
问题解决方案纯粹个人方式,若有不足,请评论区提出,谢谢
标签:nat eclips 目录 路径 org source oca encoding 方案
原文地址:https://www.cnblogs.com/lwh-note/p/8967577.html