Springboot使用html作为view视图

  • 在pom.xml中增加thymeleaf依赖

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

  • 如果你的视图不是放在/templates/下面,需要在springboot文件中更改view的视图路径
spring:
  thymeleaf:
    prefix: classpath:/templates
    suffix: .html

你可能感兴趣的:(Springboot使用html作为view视图)