相关环境搭建在:https://www.jianshu.com/p/5d5ff28d7ec0
SpringMVC配合 Thymeleaf模板 完成前后端分离构建。
下面讲一下Thymeleaf的简单实用
根据使用Spring的版本选择对应的依赖,这里我使用了3.0.9RELEASE版本的thymeleaf版本
<dependency>
<groupId>org.thymeleaf</groupId>
<artifactId>thymeleaf</artifactId>
<version>${thymeleaf.version}</version>
</dependency>
<dependency>
<groupId>org.thymeleaf</groupId>
<artifactId>thymeleaf-spring4</artifactId>
<version>${thymeleaf.version}</version>
</dependency>
未完待续
https://blog.csdn.net/u011054333/article/details/55260754
网友评论