Springboot+ thymeleaf开发web项目

Spring boot非常适合Web应用程序开发。您可以轻松创建自包含的HTTP应用。web服务器采用嵌入式Tomcat,或者Jetty等。大多数情况下Web应用程序将使用spring-bootstarter-web模块快速启动和运行,本文讲述springboot + thymeleaf 整合(第一次写,排版不是很好看)

Thymeleaf

Thymeleaf是一个Java模板引擎开发库,可以处理和生成HTML、XML、JavaScript、CSS和文本,在Web和非Web环境下都可以正常工作。

Thymeleaf可以跟Spring boot很好的集成。

开始

1,创建一个springboot项目(这里不做描述),默认就行;
2,在pom.xml(我用的是maven,gradle也是一样)添加thymeleaf依赖
Springboot+ thymeleaf开发web项目_第1张图片
3、application.yml配置:
Springboot+ thymeleaf开发web项目_第2张图片
classppath:/templates 表示工程目录位置
Springboot+ thymeleaf开发web项目_第3张图片
4、在templates下面创建index.html,controller中跳转直接可以这样:return “index”;

	@GetMapping("/test")
    public String index(){
        return "index";
    }

5、springboot ,templates 还是蛮好用的,我就写了整合,以后慢慢来补充。

总结:网上很多方法,可以百度到,如果您看到我这篇文章,感谢您花时间看完!这是我开始写博客,有点儿不知所措,以后会慢慢改进,加油!

你可能感兴趣的:(Springboot,学习)