Spring:消息,在locale的代码下找不到消息' en_US'

时间:2015-04-16 16:55:35

标签: spring spring-mvc

这是我在spring-servlet.xml中添加的内容

<bean id="messageSource"
        class="org.springframework.context.support.ResourceBundleMessageSource">
        <property name="basename" value="classpath:application"/>
    </bean>

我的 application.properties 文件位于 src / main / resources 文件夹中,但是我收到此异常

SEVERE: Servlet.service() for servlet [MVC-Dispatcher] in context with path [/MVCLayer] threw exception [javax.servlet.ServletException: javax.servlet.jsp.JspTagException: No message found under code 'Login_Username' for locale 'en_US'.] with root cause
javax.servlet.jsp.JspTagException: No message found under code 'Login_Username' for locale 'en_US'.
    at org.springframework.web.servlet.tags.MessageTag.doEndTag(MessageTag.java:200)

请帮助解决配置错误

1 个答案:

答案 0 :(得分:6)

如果将属性文件放在value="application"文件夹

中,则应使用src/main/resources

当然,请确保application.properties文件包含以Login_Username=开头的行