用springboot訪問html文件時一直出現下面的錯誤:

controller層如下:

在application.properties中的配置如下:

以上配置的情況下,訪問html頁面一直出現404,后來發現需要導入thymleaf依賴,導入之后再次訪問就可以成功運行
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
