spring boot整合freemarker模板引擎框架

freemarker是一个java web模板引擎框架,spring boot项目如何利用freemarker框架,下面将具体经由过程实践来介绍

工具/原料

  • spring boot框架
  • freemarker框架
  • intellij idea软件

方式/步骤

  1. 1

    打开intellij idea软件,建立spring boot项目

  2. 2

    建立当作功之后,项目布局如下图所示

  3. 3

    为项目添加maven依靠,代码如下

                       <dependency>

                               <groupId>org.springframework.boot</groupId>

                               <artifactId>spring-boot-starter-freemarker</artifactId>

                       </dependency>

                       <dependency>

                                <groupId>org.springframework.boot</groupId>

                                <artifactId>spring-boot-starter-web</artifactId>

                       </dependency>

  4. 4

    添加一个Controller,跳转到指标的目的页面,默认会从templates文件夹下加载页面

    代码如下

    @Controller

    @RequestMapping("/ftl")

    public class TestController {

        @RequestMapping("")

        public String test(HttpServletRequest request){

            request.setAttribute("user","zuli");

            return "1";

        }

    }

  5. 5

    在templates目次下添加1.ftl文件,2.ftl文件

  6. 6

    打开浏览器,拜候localhost:8080/ftl路径,查看结果

注重事项

  • 但愿能帮忙你
  • 感激点赞,感激存眷
  • 发表于 2018-10-10 00:00
  • 阅读 ( 185 )
  • 分类:其他类型

相关问题

0 条评论

请先 登录 后评论