SpringBoot 项目,启动后访问网页,控制台输出:
javax.servlet.ServletException: Could not resolve view with name ‘login’ in servlet with name ‘dispatcherServlet’
刚开始以为模板文件相关配置不正确,导致找不到模板文件所致。后来发现忘记模板引擎配置忘了配置 :》
在Pom.xml中增加上模板引擎后,就可以显示了。
<!--Thymeleaf 启动器-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
var foo = 'bar';