spring-boot-starter-thymeleaf依赖无法引入

教学视频让我们引入这段依赖

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

然后它就一直标红,然后我各种百度,还是找不到解决方案
新建一个module试试

spring-boot-starter-thymeleaf依赖无法引入_第1张图片
spring-boot-starter-thymeleaf依赖无法引入_第2张图片

这样,项目中就直接完成了该依赖的引入

问题总结:

1、个人觉得这是版本问题,教学视频用的是1.5,而现在已经是2.3了

2、若jar包下载失败,则到找到maven的jar包下载目录,将其删除,重新下载。默认
目录c盘下用户.m2\repository\org\springframework

3、链接: thymeleaf版本问题.

4、controller层
一定要用Controller 注解;而不是RestController 因为它是rest接口(json格式) 是解析不到html

5、HTML文件要放在resource\templates文件夹中

链接: pom.xml文件总是报错,一直提示Dependency 'xxxx‘ not found.亲测有效

你可能感兴趣的:(学习笔记,maven,spring,boot)