1. 程式人生 > >springboot整合freemarker的具體方法及案例

springboot整合freemarker的具體方法及案例

1.pom依賴

    <!-- 引入freeMarker的依賴包. -->
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-freemarker</artifactId>
    </dependency>   

2.配置application.properties

server.port=8080
spring.freemarker.allow-request-override=false
spring.freemarker.cache=true
spring.freemarker.check-template-location=true
spring.freemarker.charset=UTF-8
spring.freemarker.content-type=text/html
spring.freemarker.expose-request-attributes=false
spring.freemarker.expose-session-attributes=false
spring.freemarker.suffix=.html
spring.freemarker.templateEncoding=UTF-8
spring.freemarker.templateLoaderPath=classpath:/templates/
spring.freemarker.expose-spring-macro-helpers=false

 3.程式碼實現

 1) 控制層程式碼

package com.xsjt.controller;

import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;

/** * ClassName:StudentController * Date: 2017年11月6日 下午4:27:40 * @author Joe * @version * @since JDK 1.8 */ @Controller public class StudentController { /** * freemarker:(跳轉到 freemarker.ftl). * @author Joe * Date:2017年11月6日下午4:52:19 * * @param map *
@return */ @RequestMapping("/freemarker") public String freemarker(Map<String, Object> map){ map.put("name", "Joe"); map.put("sex", 1); //sex:性別,1:男;0:女; // 模擬資料 List<Map<String, Object>> friends = new ArrayList<Map<String, Object>>(); Map<String, Object> friend = new HashMap<String, Object>(); friend.put("name", "xbq"); friend.put("age", 22); friends.add(friend); friend = new HashMap<String, Object>(); friend.put("name", "July"); friend.put("age", 18); friends.add(friend); map.put("friends", friends); return "freemarker"; } }

   2)在main\resources\templates 目錄下 新建 freemarker.ftl 檔案,也可以是html的字尾,內容如下:

<!DOCTYPE html>  
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org"  
      xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity3">  
    <head>  
        <title>Hello World!</title>  
    </head>  
    <body>
       <center>
       <p>  
           welcome ${name} to freemarker!  
       </p>        
        
       <p>性別:  
           <#if sex==0><#elseif sex==1><#else>  
                  保密     
           </#if>  
        </p>
        
       <h4>我的好友:</h4>  
       <#list friends as item>  
               姓名:${item.name} , 年齡${item.age}  
           <br>  
       </#list>  
       </center>
    </body>  
</html>

  3)在瀏覽器中訪問 http:127.0.0.1:8080/freemarker,即可跳轉到 到頁面,如下:


4.原始碼下載

-------------------------------------------------------------------------------------

----文章說明:

本文原作者:小蔥拌豆腐~

本文轉自https://www.cnblogs.com/xbq8080/p/7768744.html,請點選檢視原文!