springboot+maven+mybatis框架搭建完成后运行报错Unable to start ServletWebServerApplicationContext due to missing

https://blog.csdn.net/maoyuanming0806/article/details/80156644
按照如上链接处理还是同样的错误,。处理方法配置好适配的Tomcat版本就可以了,之前是因为设置版本太低了

<properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
        <java.version>1.8</java.version>
        <tomcat.version>8.5.31</tomcat.version>
</properties>
<dependency>
      <groupId>org.apache.tomcat</groupId>
      <artifactId>tomcat-juli</artifactId>
      <version>${tomcat.version}</version>
    </dependency>

springboot+maven+mybatis框架搭建完成后运行报错Unable to start ServletWebServerApplicationContext due to missing
springboot+maven+mybatis框架搭建完成后运行报错Unable to start ServletWebServerApplicationContext due to missing
springboot+maven+mybatis框架搭建完成后运行报错Unable to start ServletWebServerApplicationContext due to missing