首页 > 编程语言 > 详细

(016)Spring Boot之如何使用freemarker

时间:2019-11-24 22:20:22      阅读:80      评论:0      收藏:0      [点我收藏+]

  springboot支持freemarker,需要在pom.xml文件中添加以下依赖:

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-freemarker</artifactId>
</dependency>

  freemarker文件的默认路径是:classpath:/templates/,如下:

技术分享图片

   测试类如下:

package com.edu.spring.springboot;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;

@Controller
public class AccountController {

    @RequestMapping("/reg")
    public String reg(){
        return "/reg";
    }
    
}

  浏览器输入:http://127.0.0.1:8080/reg即可跳转到 reg.ftl页面

  修改freemarker的默认路径,在application.properties文件中添加spring.freemarker.templateLoaderPath属性,可以配置多个,逗号分隔,如下:

spring.freemarker.templateLoaderPath=classpath:/ftl/,classpath:/ftl2/

  目录结构如下:

技术分享图片

  测验类如下:

package com.edu.spring.springboot;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;

@Controller
public class AccountController {

    @RequestMapping("/reg")
    public String reg(){
        return "reg";
    }
    
    @RequestMapping("/logout")
    public String logout(){
        return "logout";
    }
}

  浏览器输入:http://127.0.0.1:8080/reg即可跳转到 reg.ftl页面

  浏览器输入:http://127.0.0.1:8080/logout即可跳转到 logout页面

 

(016)Spring Boot之如何使用freemarker

原文:https://www.cnblogs.com/javasl/p/11918172.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!