Spring使用MessageSource获取

Exception in thread "main" org.springframework.context.NoSuchMessageException: No message found under code 'welcome' for locale 'zh_CN'.
    at org.springframework.context.support.AbstractMessageSource.getMessage(AbstractMessageSource.java:161)
    at com.daquan._202007._01.spring.i18n.TestMessageSource.main(TestMessageSource.java:14)

 

问题原因:这个异常是由于Spring没有加载resource目录下的资源国际化配置文件导致的。

解决方案:可以通过手动指定资源国际化的前缀名来解决。如下:

你可能感兴趣的:(Spring,JAVA技术,Spring资源国际化配置出错)