Spring Boot + Thymeleaf not finding message properties

前端 未结 2 1259
野趣味
野趣味 2021-01-12 17:32

I am trying to create a web application using Spring Boot and Thymeleaf and am having trouble getting the template to use the messages defined in a properties file. Instead

2条回答
  •  死守一世寂寞
    2021-01-12 17:39

    I Have the same Issue while using messages.properties file The issue was @EnableAutoConfiguration not added in my Spring boot file

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

    After added its work

提交回复
热议问题