关于spring boot后台找不到页面

第一需要在application.xml 中添加配置

spring:
  thymeleaf:
    encoding: UTF-8
    mode: HTML5
    prefix: classpath:/templates/
    suffix: .html
    check-template: true
    cache: false

之后还要在pom文件中添加jar为

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

此处只处理templates文件下静态页面

你可能感兴趣的:(java,springboot)