SpringBoot中搭建thymeleaf网页遇到Cannot resolve MVC View ‘###‘的问题

原因是配置文件pom.xml中thymeleaf版本与springBoot版本有冲突
要引入的thymeleaf依赖是这个:

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-thymeleaf</artifactId>
        </dependency>

并且声明版本:

<properties>
        <java.version>1.8</java.version>
        <thymeleaf.version>3.0.11.RELEASE</thymeleaf.version>
        <thymeleaf-layout-dialect.version>2.2.2</thymeleaf-layout-dialect.version>
    </properties>