解决springboot集成thymeleaf时,maven自动导包找不到默认版本的问题

首先添加thymeleaf起步依赖:

  
            org.springframework.boot
            spring-boot-starter-thymeleaf
  

如果maven出现找不到默认要导入thymeleaf的jar版本时,我们可以自己指定thymeleaf主程序的版本和对应 layout的版本:

 
        3.0.9.RELEASE
        2.3.0
 

你可能感兴趣的:(springboot,thymeleaf)