其他分享
首页 > 其他分享> > SpringBoot+Thymeleaf国际化引用出错

SpringBoot+Thymeleaf国际化引用出错

作者:互联网

在学习SpringBoot国际化过程中,在html文件中引用国际化数据时出现了以下问题:
在这里插入图片描述一直在找问题,检查自己的国际化配置文件路径,和路径配置如下:
在这里插入图片描述检查并未出错,但页面上的确没有引用到国际化内容,查询了很多人的方法,最终决定手动配置message组件,代码如下:

 @Configuration
public class MyMvcConfig extends WebMvcConfigurerAdapter {
 @Bean
    public ResourceBundleMessageSource messageSource(){
        ResourceBundleMessageSource messageSource = new ResourceBundleMessageSource();
        messageSource.setUseCodeAsDefaultMessage(true);
        messageSource.setFallbackToSystemLocale(false);
        messageSource.setBasenames("i18n.login");
        messageSource.setDefaultEncoding("UTF-8");
        messageSource.setCacheSeconds(2);
        return messageSource;
    }
  }

尝试重新启动运行竟然成功了!

应该是Properties文件中的配置并没有起作用,原因是容器中没有自动配置的message组件

标签:国际化,SpringBoot,Thymeleaf,出错,ResourceBundleMessageSource,message,messageSource,pu
来源: https://blog.csdn.net/weixin_41501644/article/details/100515117