spring-boot-starter-thymeleaf的作用

POM.xml

//使用模板thymeleaf



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

Cotroller类

@RequestMapping(value = "/")
public String index(){
   return "index";
}

application.properties

#视图层控制
spring.mvc.view.prefix=classpath:/templates/
spring.mvc.view.suffix=.html
spring.mvc.static-path-pattern=/static/**

resources/templates/

index.html

 

resources/static/javascripts/

test.js

jquery.min.js

 

启动时自动找到index.html

2018-09-24 00:04:30.422  INFO 6616 --- [           main] o.s.b.a.w.s.WelcomePageHandlerMapping    : Adding welcome page template: index

你可能感兴趣的:(thymeleaf)