【SpringBoot实战】SpringBoot + Thymeleaf

目录

  • 前言
  • 搭建过程
  • 运行
  • 项目代码

前言

最近公司实在不忙,小编便沉迷于文学作品,忙着在公众号上写读书笔记,倒是把CSDN给遗忘了。真是罪过。昨天找了组长申请活干,组长便给我按排了一个小系统,只供组内使用,项目不大,前后端也不用分离,活也全部都是小编一个人的。springboot+Themeleaf这个方案被组长否了,原因是themeleaf最近不维护了,但是小编也是把架子搭起来了的,所以还是在这记录一下。

搭建过程

1、new->project->spring Initializr->Packaging选择war->next
【SpringBoot实战】SpringBoot + Thymeleaf_第1张图片
2、在下一步里,选中web,勾选Spring Web Starter
【SpringBoot实战】SpringBoot + Thymeleaf_第2张图片
3、选中Template Engines,勾选Thymeleaf ,然后next,最后finished生成项目。
【SpringBoot实战】SpringBoot + Thymeleaf_第3张图片
4、添加web,service,model和对应得HTML文件,项目结构如图:
【SpringBoot实战】SpringBoot + Thymeleaf_第4张图片

运行

通过SpringbootThymeleafApplication的main方法运行项目,在浏览器输入http://localhost:8080/book运行即可得到如图结果。
【SpringBoot实战】SpringBoot + Thymeleaf_第5张图片

项目代码

https://github.com/yye123/SpringBoot.git

你可能感兴趣的:(【SpringBoot实战】SpringBoot + Thymeleaf)