new learn

weixin_34148340發表於2018-05-16

相關環境搭建在: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

相關文章