看到一篇文章说freemarker比thymeleaf
最近学习freemarker

之前用过thymeleaf

<!--thymeleaf依赖-->
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>

其实不管好用与否,用过了就那样子.

而后配合shiro,也有thymeleaf-extras-shiro的依赖

<!--shiro&thymeleaf-->
<dependency>
    <groupId>com.github.theborakompanioni</groupId>
    <artifactId>thymeleaf-extras-shiro</artifactId>
    <version>2.0.0</version>
</dependency>

<!-- shiro -->
<dependency>
    <groupId>org.apache.shiro</groupId>
    <artifactId>shiro-spring</artifactId>
    <version>1.3.2</version>
</dependency>

<!-- shiro-web -->
<dependency>
    <groupId>org.apache.shiro</groupId>
    <artifactId>shiro-web</artifactId>
    <version>1.3.2</version>
</dependency>

而freemarker最近也想通过网站自学下

最近学习freemarker
最近学习freemarker

最近学习freemarker

相关文章:

  • 2021-05-20
  • 2022-12-23
  • 2022-12-23
  • 2021-03-30
  • 2021-11-15
  • 2022-01-30
  • 2021-05-29
猜你喜欢
  • 2021-04-11
  • 2021-07-13
  • 2022-12-23
  • 2021-04-04
  • 2022-01-30
  • 2021-08-07
相关资源
相似解决方案