成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

SpringBoot中怎么搭建Beetl環(huán)境

SpringBoot中怎么搭建Beetl環(huán)境,針對(duì)這個(gè)問(wèn)題,這篇文章詳細(xì)介紹了相對(duì)應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問(wèn)題的小伙伴找到更簡(jiǎn)單易行的方法。

創(chuàng)新互聯(lián)-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性價(jià)比稱多網(wǎng)站開(kāi)發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫(kù),直接使用。一站式稱多網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋稱多地區(qū)。費(fèi)用合理售后完善,十年實(shí)體公司更值得信賴。

I. 準(zhǔn)備

1. 依賴

首先我們是需要一個(gè)springboot項(xiàng)目,基本的pom結(jié)構(gòu)大都相似

<parent>
    <groupid>org.springframework.boot</groupid>
    <artifactid>spring-boot-starter-parent</artifactid>
    <version>2.0.4.RELEASE</version>
    <relativepath /> <!-- lookup parent from update -->
</parent>

<properties>
    <project.build.sourceencoding>UTF-8</project.build.sourceencoding>
    <project.reporting.outputencoding>UTF-8</project.reporting.outputencoding>
    <spring-cloud.version>Finchley.RELEASE</spring-cloud.version>
    <java.version>1.8</java.version>
</properties>

<build>
    <pluginmanagement>
        <plugins>
            <plugin>
                <groupid>org.springframework.boot</groupid>
                <artifactid>spring-boot-maven-plugin</artifactid>
            </plugin>
        </plugins>
    </pluginmanagement>
</build>
<repositories>
    <repository>
        <id>spring-milestones</id>
        <name>Spring Milestones</name>
        <url>https://repo.spring.io/milestone</url>
        <snapshots>
            <enabled>false</enabled>
        </snapshots>
    </repository>
</repositories>

在這個(gè)項(xiàng)目中,我們主要需要引入兩個(gè)依賴包,一個(gè)web,一個(gè)官方提供的beetl-framework-starter,當(dāng)前最新的版本為 1.2.12.RELEASE

<dependencies>
    <dependency>
        <groupid>org.springframework.boot</groupid>
        <artifactid>spring-boot-starter-web</artifactid>
    </dependency>
    <dependency>
        <groupid>com.ibeetl</groupid>
        <artifactid>beetl-framework-starter</artifactid>
        <version>1.2.12.RELEASE</version>
    </dependency>
</dependencies>

2. 配置參數(shù)

通常我們直接使用默認(rèn)的thymeleaf參數(shù)配置即可,下面給出幾個(gè)常用的配置

beetl:
  enabled: true
  suffix: btl
beetl-beetlsql:
  dev: true # 即自動(dòng)檢查模板變化

II. 項(xiàng)目搭建演示

1. 項(xiàng)目結(jié)構(gòu)

搭建一個(gè)web項(xiàng)目和我們之前的純后端項(xiàng)目有點(diǎn)不一樣,前端資源放在什么地方,依賴文件怎么處理都是有講究的,下面是一個(gè)常規(guī)的項(xiàng)目結(jié)構(gòu)

SpringBoot中怎么搭建Beetl環(huán)境

如上圖,前端資源文件默認(rèn)放在resources目錄下,下面有兩個(gè)目錄

  • templates:存放模板文件,可以理解為我們編寫的html,注意這個(gè)文件名不能有問(wèn)題

  • static: 存放靜態(tài)資源文件,如js,css,image等

2. Rest服務(wù)

我們這里提供了三個(gè)接口,主要是為了演示三種不同的數(shù)據(jù)綁定方式(和前面兩篇博文基本一樣)

@Controller
public class IndexController {

    @GetMapping(path = {"", "/", "/index"})
    public ModelAndView index() {
        Map<string, object> data = new HashMap&lt;&gt;(2);
        data.put("name", "YiHui Beetl");
        data.put("now", LocalDateTime.now().toString());
        return new ModelAndView("index.btl", data);
    }

    private static String[] contents =
            ("綠蟻浮觴香泛泛,黃花共薦芳辰。\n清霜天宇凈無(wú)塵。\n登高宜有賦,拈筆戲成文。\n可奈園林搖落盡,悲秋意與誰(shuí)論。\n眼中相識(shí)幾番新。\n龍山高會(huì)處,落帽定何人。").split("\n");
    private static Random random = new Random();

    @GetMapping(path = "show1")
    public String showOne(Model model) {
        model.addAttribute("title", "臨江仙");
        model.addAttribute("content", contents[random.nextInt(6)]);
        return "show1.btl";
    }

    @GetMapping(path = "show2")
    public String showTow(Map<string, object> data) {
        data.put("name", "Show2----&gt;");
        data.put("now", LocalDateTime.now().toString());
        return "show2.btl";
    }
}

上面的三種case中

  • 第一個(gè)是最好理解的,在創(chuàng)建ModelAndView時(shí),傳入viewName和數(shù)據(jù)

  • 第二個(gè)是通過(guò)接口參數(shù)Model,設(shè)置傳遞給view的數(shù)據(jù)

  • 第三種則直接使用Map來(lái)傳遞數(shù)據(jù)

注意

如果和前面兩篇博文進(jìn)行對(duì)比,會(huì)發(fā)現(xiàn)一個(gè)顯著的區(qū)別,之前的Freemaker, Thymeleaf指定視圖名的時(shí)候,都不需要后綴,但是這里,必須帶上后綴,否則會(huì)500錯(cuò)誤


三個(gè)接口,對(duì)應(yīng)的三個(gè)btl文件,如下

index.btl

<meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta name="description" content="SpringBoot Beetl">
    <meta name="author" content="YiHui">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>YiHui's SpringBoot Beetl Demo</title>
    <link rel="stylesheet" href="index.css">



<div>
    <div class="title">hello world!</div>
    <br>
    <div class="content">歡迎訪問(wèn)  ${name}</div>
    <br>
    <div class="sign">當(dāng)前時(shí)間 ${now}</div>
    <br>
    <a href="show1">傳參2測(cè)試</a> &nbsp;&nbsp;&nbsp;&nbsp;
    <a href="show2">傳參3測(cè)試</a>
</div>

show1.btl

<meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta name="description" content="SpringBoot Beetl">
    <meta name="author" content="YiHui">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>YiHui's SpringBoot Beetl Demo</title>
    <link rel="stylesheet" href="index.css">



<div>
    <div class="title">${title}</div>
    <div class="content">${content}</div>
</div>

show2.btl

<meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta name="description" content="SpringBoot Beetl">
    <meta name="author" content="YiHui">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>YiHui's SpringBoot Beetl Demo</title>
    <link rel="stylesheet" href="index.css">



<div>
    <div class="title">${name}</div>
    <div class="content">${now}</div>
</div>

在上面的模板文件中,需要注意引用css樣式文件,路徑前面并沒(méi)有static,我們對(duì)應(yīng)的css文件

index.css

.title {
    color: #c00;
    font-weight: normal;
    font-size: 2em;
}

.content {
    color: darkblue;
    font-size: 1.2em;
}

.sign {
    color: lightgray;
    font-size: 0.8em;
    font-style: italic;
}

3. 演示

啟動(dòng)項(xiàng)目后,可以看到三個(gè)頁(yè)面的切換,模板中的數(shù)據(jù)根據(jù)后端的返回替換,特別是主頁(yè)的時(shí)間,每次刷新都會(huì)隨之改變

SpringBoot中怎么搭建Beetl環(huán)境

關(guān)于SpringBoot中怎么搭建Beetl環(huán)境問(wèn)題的解答就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,如果你還有很多疑惑沒(méi)有解開(kāi),可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關(guān)知識(shí)。

當(dāng)前文章:SpringBoot中怎么搭建Beetl環(huán)境
標(biāo)題網(wǎng)址:http://jinyejixie.com/article6/ghdcig.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供自適應(yīng)網(wǎng)站、品牌網(wǎng)站建設(shè)、定制開(kāi)發(fā)、ChatGPT、云服務(wù)器網(wǎng)站收錄

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

成都網(wǎng)站建設(shè)公司
巴里| 遵义县| 平乐县| 威远县| 凤城市| 安化县| 聂拉木县| 泰州市| 夹江县| 吴堡县| 九台市| 芦山县| 庆阳市| 乐业县| 左权县| 河西区| 合江县| 云安县| 兰西县| 寿宁县| 无锡市| 中江县| 娄烦县| 泰和县| 新营市| 康平县| 定陶县| 徐闻县| 长顺县| 靖州| 朝阳县| 邵阳市| 彰化市| 土默特右旗| 新宾| 湖口县| 炎陵县| 淮滨县| 佛山市| 彭山县| 南召县|