SpringBoot 2.0 使用 Thymeleaf 实现前后端分离

最近玩了一下在spingboot2.0 中使用thymeleaf 实现前后端分离部署
代码中采用spingboot2.0 + thymeleaf ,部署环境 centos7+nginx+jdk8
具体springboot和thymeleaf怎么整合就不说啦,就截几张图看看前后端分离咋配置的哈!

代码结构:
SpringBoot 2.0 使用 Thymeleaf 实现前后端分离_第1张图片

html页面、js、css模块:
SpringBoot 2.0 使用 Thymeleaf 实现前后端分离_第2张图片application.yml配置:
SpringBoot 2.0 使用 Thymeleaf 实现前后端分离_第3张图片
代码中的配置就是这么简单,就已经可以啦,下面再看看nginx中的配置哈!
把项目中resource的static和template目录(即html/js/css)打包上传到nginx的html中
在这里插入图片描述
nginx里的配置:
SpringBoot 2.0 使用 Thymeleaf 实现前后端分离_第4张图片
启动nginx,启动后台包就可以啦

参考文章: https://blog.csdn.net/qq_39211866/article/details/84452874

你可能感兴趣的:(html)