Spring Boot整合模板引擎

一茁帽、FreeMarker模板引擎

Spring Boot支持FreeMarker模板引擎十嘿,它是在Spring MVC基礎(chǔ)上加入了自動(dòng)配置的特性因惭,在使用FreeMarker模板引擎的時(shí)候,需要在resources文件夾內(nèi)建立static文件夾存放靜態(tài)資源(一般包括css绩衷、images蹦魔、js),還要建立一個(gè)templates文件唇聘,用于存放FreeMarker模板版姑。

1)依賴配置

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>springboot.example</groupId>
    <artifactId>springboot-freemarker</artifactId>
    <version>1.0-SNAPSHOT</version>
    <packaging>jar</packaging>
    <name>springboot-freemarker</name>
    <description>Spring Boot整合FreeMarker</description>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.5.8.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
        <java.version>1.8</java.version>
    </properties>

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

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-devtools</artifactId>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>org.webjars</groupId>
            <artifactId>jquery</artifactId>
            <version>3.2.1</version>
        </dependency>

    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

</project>

Spring Boot對(duì)靜態(tài)資源友好z支持,包括對(duì)WebJars的支持也非常友好迟郎,這里也使用了WebJars剥险。

2)index.ftl模板

<!DOCTYPE html>
<html>
<head lang="en">
    <title>Spring Boot Demo - FreeMarker</title>

    <link href="/css/index.css" rel="stylesheet"/>

</head>
<body>
<center>
    <img src="/images/logo.png"/>
    <h1 id="title">${title}</h1>
</center>

<script type="text/javascript" src="/webjars/jquery/3.2.1/jquery.min.js"></script>

<script>
    $(function () {
        $('#title').click(function () {
            alert('點(diǎn)擊了');
        });
    })
</script>
</body>
</html>

上面jquery的資源就來自于WebJars,WebJars將常見的web靜態(tài)資源封裝到了jar包中宪肖,這樣更加方便管理和版本控制表制。

3)controller代碼

package com.lemon.springboot.controller;

import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView;

/**
 * @author lemon
 */
@Controller
@RequestMapping("/web")
public class WebController {

    @RequestMapping("/index")
    public ModelAndView index() {
        ModelAndView modelAndView = new ModelAndView();
        modelAndView.addObject("title", "Hello World");
        modelAndView.setViewName("index");
        return modelAndView;
    }

    @RequestMapping("/index1")
    public String index1(ModelMap modelMap) {
        modelMap.addAttribute("title", "Hello World!!!");
        return "index";
    }
}

注意:注解@Controller支持Model健爬、ModelMap以及ModelAndView,如果是@RestController么介,將僅僅支持ModelAndView娜遵。

二、Thymeleaf引擎模板

Spring Boot默認(rèn)使用的是Thymeleaf引擎模板壤短,它的模板是HTML格式的设拟,里面使用的th命名空間。使用方法和FreeMarker一模一樣久脯,只需要將FreeMarker的依賴改成Thymeleaf的依賴纳胧,將Thymeleaf的模板替換FreeMarker的模板即可。

1)依賴

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

2)模板

<!DOCTYPE html>
<html xmlns:th="http://www.w3.org/1999/xhtml">
<head lang="en">
    <title>Spring Boot Demo - Thymeleaf</title>
    
    <link href="/css/index.css" rel="stylesheet" />
    
</head>
<body>
    <center>
        <img src="/images/logo.png" />
        <h1 id="title" th:text="${title}"></h1>
    </center>
    
    <script type="text/javascript" src="/webjars/jquery/3.2.1/jquery.min.js"></script>
    
    <script>
        $(function(){
            $('#title').click(function(){
                alert('點(diǎn)擊了');
            });
        })
    </script>
</body>
</html>
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末帘撰,一起剝皮案震驚了整個(gè)濱河市跑慕,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌摧找,老刑警劉巖核行,帶你破解...
    沈念sama閱讀 210,978評(píng)論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異蹬耘,居然都是意外死亡芝雪,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,954評(píng)論 2 384
  • 文/潘曉璐 我一進(jìn)店門婆赠,熙熙樓的掌柜王于貴愁眉苦臉地迎上來绵脯,“玉大人,你說我怎么就攤上這事休里。” “怎么了赃承?”我有些...
    開封第一講書人閱讀 156,623評(píng)論 0 345
  • 文/不壞的土叔 我叫張陵妙黍,是天一觀的道長(zhǎng)。 經(jīng)常有香客問我瞧剖,道長(zhǎng)拭嫁,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,324評(píng)論 1 282
  • 正文 為了忘掉前任抓于,我火速辦了婚禮做粤,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘捉撮。我一直安慰自己怕品,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,390評(píng)論 5 384
  • 文/花漫 我一把揭開白布巾遭。 她就那樣靜靜地躺著肉康,像睡著了一般闯估。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上吼和,一...
    開封第一講書人閱讀 49,741評(píng)論 1 289
  • 那天涨薪,我揣著相機(jī)與錄音,去河邊找鬼炫乓。 笑死刚夺,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的末捣。 我是一名探鬼主播侠姑,決...
    沈念sama閱讀 38,892評(píng)論 3 405
  • 文/蒼蘭香墨 我猛地睜開眼,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼塔粒!你這毒婦竟也來了结借?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,655評(píng)論 0 266
  • 序言:老撾萬榮一對(duì)情侶失蹤卒茬,失蹤者是張志新(化名)和其女友劉穎船老,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體圃酵,經(jīng)...
    沈念sama閱讀 44,104評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡柳畔,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,451評(píng)論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了郭赐。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片薪韩。...
    茶點(diǎn)故事閱讀 38,569評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖捌锭,靈堂內(nèi)的尸體忽然破棺而出俘陷,到底是詐尸還是另有隱情,我是刑警寧澤观谦,帶...
    沈念sama閱讀 34,254評(píng)論 4 328
  • 正文 年R本政府宣布拉盾,位于F島的核電站,受9級(jí)特大地震影響豁状,放射性物質(zhì)發(fā)生泄漏捉偏。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,834評(píng)論 3 312
  • 文/蒙蒙 一泻红、第九天 我趴在偏房一處隱蔽的房頂上張望夭禽。 院中可真熱鬧,春花似錦谊路、人聲如沸讹躯。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,725評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽蜀撑。三九已至挤巡,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間酷麦,已是汗流浹背矿卑。 一陣腳步聲響...
    開封第一講書人閱讀 31,950評(píng)論 1 264
  • 我被黑心中介騙來泰國(guó)打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留沃饶,地道東北人母廷。 一個(gè)月前我還...
    沈念sama閱讀 46,260評(píng)論 2 360
  • 正文 我出身青樓满着,卻偏偏與公主長(zhǎng)得像濒翻,于是被迫代替她去往敵國(guó)和親奕塑。 傳聞我的和親對(duì)象是個(gè)殘疾皇子扭倾,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,446評(píng)論 2 348

推薦閱讀更多精彩內(nèi)容