springboot国际化自定义localeResolver无效页面跳转404

在实现国际化时发现点击链接切换无效,开始一步步排查。

  1. 检查message扫描自定义包有没有配置
    配置到自己写的国际化properties文件,发现没问题
spring.messages.basename=i18n.login

springboot国际化自定义localeResolver无效页面跳转404_第1张图片
2. 将浏览器切换到英文,发现国际化正常
springboot国际化自定义localeResolver无效页面跳转404_第2张图片
说明时自己写的localResolver没有注入成功

  1. 检查自定义的类,发现没问题springboot国际化自定义localeResolver无效页面跳转404_第3张图片

  2. 去看看配置类有无出错,有无注解@Bean和@Configuration
    springboot国际化自定义localeResolver无效页面跳转404_第4张图片

  3. 看看请求模板里路径和addViewController里设置的"/sign.html"是否一致。(路径必须要通过addViewController转发,直接访问templates下的html会报404)
    在这里插入图片描述

  4. 检查方法名
    springboot国际化自定义localeResolver无效页面跳转404_第5张图片
    看了很久才发现localeResolver的l写成了大写,方法名必须是localeResolver!!!

你可能感兴趣的:(日常问题)