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
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