Spring Boot + Thymeleaf 找不到消息属性

Posted

技术标签:

【中文标题】Spring Boot + Thymeleaf 找不到消息属性【英文标题】:Spring Boot + Thymeleaf not finding message properties 【发布时间】:2016-08-01 10:28:30 【问题描述】:

我正在尝试使用 Spring Boot 和 Thymeleaf 创建一个 Web 应用程序,但无法让模板使用属性文件中定义的消息。而不是属性文件中定义的消息,而是显示??form.welcome_en_GB?? 控制台没有记录任何错误。

项目结构是这样的

──┬ ???? src
  │   └─── ???? main
  │       ├─── ???? java
  │       │   └─── ???? com
  │       │       └─── ???? package
  │       │           ├─── ???? controller
  │       │           │   └─── FormController.java
  │       │           ├─── Application.java
  │       │           └─── ServletInitializer.java
  │       └─── ???? resources
  │           ├─── ???? static
  │           │   └─── home.html
  │           ├─── ???? templates
  │           │   ├─── form.html
  │           │   └─── form.properties
  │           └─── application.properties
  └─── pom.xml

Application.java

@SpringBootApplication
public class Application 

    public static void main(String[] args) 
        SpringApplication.run(Application.class, args);
    

ServletInitializer.java

public class ServletInitializer extends SpringBootServletInitializer 

    @Override
    protected SpringApplicationBuilder configure(SpringApplicationBuilder application) 
        return application.sources(Application.class);
    

FormController.java

@Controller
@RequestMapping("/form")
public class FormController 
    private static final Logger log = LoggerFactory.getLogger(FormController.class);

    @RequestMapping(value = "/new", method = RequestMethod.GET)
    public ModelAndView getNewReportForm() 
        log.info("New form requested");
        ModelAndView mav = new ModelAndView("form");
        return mav;
    

form.html

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org">
<head>
    <title>Form</title>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
    <link rel="stylesheet" type="text/css" media="all"/>
</head>
<body>
<p th:text="#form.welcome">Welcome!</p>
</body>
</html>

form.properties

form.welcome=Hello there!

【问题讨论】:

【参考方案1】:

我在使用 messages.properties 文件时遇到同样的问题 问题是我的 Spring 引导文件中没有添加 @EnableAutoConfiguration

 @SpringBootApplication
 @EnableAutoConfiguration
    public class Run 

        public static void main(String[] args) 
            SpringApplication.run(Run.class, args);
            System.out.println("Run");
        

    

添加后

【讨论】:

这很奇怪,因为 SpringBootApplication 已经包含了 EnableAutoConfiguration。【参考方案2】:

我相信将 form.properties 的名称更改为 messages.properties 并将其定位在资源文件夹的根目录中应该可以让 spring boot 自动拾取它。

当我有多个消息文件时,我会在 MessageSource bean 中明确列出它们,以便 MVC 自动配置选择它们,例如:

@Bean
public MessageSource messageSource() 
    final ReloadableResourceBundleMessageSource messageSource = new ReloadableResourceBundleMessageSource();
    messageSource.setBasenames("classpath:/some-mvc-messages", "classpath:/some-other-mvc-messages", "classpath:/another-projects/mvc-messages");
    messageSource.setUseCodeAsDefaultMessage(true);
    messageSource.setDefaultEncoding("UTF-8");
    messageSource.setCacheSeconds(5);
    return messageSource;

【讨论】:

谢谢,我设置了消息源的基本名称,它现在可以工作了 感谢您的提示。我遇到了 Thymeleaf 国际化消息在作为 jar 文件运行时无法解决但在调试时会运行的问题。添加此 Bean 声明使其在两种情况下都能解决。 谢谢!出于某种原因,我的messages.properties 位于src/main/resourcesi18n 子目录中(可能是听从了关于 Spring Boot + Thymeleaf + i18n 的许多 terrible 博客文章之一的建议,这些文章告诉你要做太多的手动配置,而不是让 Spring Boot 为你做)。移动它可以解决这个问题。

以上是关于Spring Boot + Thymeleaf 找不到消息属性的主要内容,如果未能解决你的问题,请参考以下文章

带有 Spring Boot 的 Thymeleaf - 找不到静态资产 (CSS)

Spring Boot (十五): Spring Boot + Jpa + Thymeleaf 增删改查示例

如何从 Spring Boot 中找到 Thymeleaf 模板

Spring Boot thymeleaf 验证不起作用

thymeleaf-spring4:jar 找不到工件 - gradle intellij

Spring boot - bootstrap 和 thymeleaf 排序表