<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
<!-- springboot整合freemarker --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-freemarker</artifactId> </dependency>
# 設定freemarker spring: freemarker: # 設定模板字尾名 suffix: .ftl # 設定檔案型別 content-type: text/html # 設定頁面編碼格式 charset: UTF-8 # 設定頁面快取 cache: false # 設定ftl檔案路徑 template-loader-path: - classpath:/templates # 設定靜態檔案路徑,js,css等 mvc: static-path-pattern: /static/**
目錄:src/main/resources 建立templates資料夾,資料夾裡新建freemarker.ftl檔案
<!DOCTYPE> <html> <head> <title>freemark</title> </head> <body> <h1>Hello ${name} from resource freemark!</h1> </body> </html>
package com.ahut.action; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.servlet.ModelAndView; /** * * @ClassName: FreemarkerAction * @Description: freemarker控制層 * @author cheng * @date 2018年1月22日 下午8:19:39 */ @Controller @RequestMapping(value = "/freemarker") public class FreemarkerAction { /** * 紀錄檔管理 */ private static Logger log = LoggerFactory.getLogger(FreemarkerAction.class); * * @Title: toDemo * @Description: 跳轉freemarker頁面 * @param mv * @return @RequestMapping(value = "/toDemo") public ModelAndView toDemo(ModelAndView mv) { log.info("====>>跳轉freemarker頁面"); mv.addObject("name", "jack"); mv.setViewName("freemarker"); return mv; } }
啟動專案,輸入http://localhost:8080/freemarker/toDemo,看到以下介面
application.properties
spring.freemarker.request-context-attribute=request
ftl
<#assign base=request.contextPath /> <!DOCTYPE html> <html lang="zh"> <head> <base id="base" href="${base}" rel="external nofollow" > <title>首頁</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <link href="${base}/static/bootstrap-3.3.4/css/bootstrap.min.css" rel="external nofollow" rel="stylesheet"> <script src="${base}/static/bootstrap-3.3.4/js/bootstrap.min.js"></script>
js
var base = document.getElementById("base").href; // 與後臺互動 _send = function(async, url, value, success, error) { $.ajax({ async : async, url : base + '/' + url, contentType : "application/x-www-form-urlencoded; charset=utf-8", data : value, dataType : 'json', type : 'post', success : function(data) { success(data); }, error : function(data) { error(data); } }); };
package com.ahut.config; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.config.annotation.EnableWebMvc; import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry; import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter; /** * @author cheng * @className: WebConfig * @description: 靜態資源設定類 * @dateTime 2018/4/19 17:59 */ @Configuration @EnableWebMvc public class WebConfig extends WebMvcConfigurerAdapter { /** * 紀錄檔管理 */ private Logger log = LoggerFactory.getLogger(WebConfig.class); * @description: * @author cheng * @dateTime 2018/4/19 17:59 @Override public void addResourceHandlers(ResourceHandlerRegistry registry) { log.info("設定靜態資源所在目錄"); // 和頁面有關的靜態目錄都放在專案的static目錄下 registry.addResourceHandler("/static/**").addResourceLocations("classpath:/static/"); } }
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>SpringBoot - 登入</title> <meta name="keywords" content="springboot"> <meta name="description" content="SpringBoot"> <link rel="shortcut icon" href="favicon.ico" rel="external nofollow" > <link href="/static/css/bootstrap.min.css?v=3.3.6" rel="external nofollow" rel="stylesheet" type="text/css"> <link href="/static/css/font-awesome.css?v=4.4.0" rel="external nofollow" rel="stylesheet"> <!-- Sweet Alert --> <link href="/static/css/plugins/sweetalert/sweetalert.css" rel="external nofollow" rel="stylesheet"> <link href="/static/css/animate.css" rel="external nofollow" rel="stylesheet"> <link href="/static/css/style.css?v=4.1.0" rel="external nofollow" rel="stylesheet"> <!--[if lt IE 9]> <meta http-equiv="refresh" content="0;ie.html"/> <![endif]--> <script>if (window.top !== window.self) { window.top.location = window.location; }</script> </head> <body class="gray-bg"> <div class="middle-box text-center loginscreen animated fadeInDown"> <div> <div> <h1 class="logo-name">Spring</h1> </div> <h3>歡迎使用 SpringBoot</h3> <div class="form-group"> <input type="text" id="userAccount" class="form-control" placeholder="使用者名稱" required=""> <input type="password" id="userPassword" class="form-control" placeholder="密碼" required=""> <button class="btn btn-primary block full-width m-b" onclick="login()">登 錄</button> <p class="text-muted text-center"><a href="login.ftl#" rel="external nofollow" > <small>忘記密碼了?</small> </a> | <a href="register.html" rel="external nofollow" >註冊一個新賬號</a> </p> </div> </div> <!-- 全域性js --> <script src="/static/js/jquery.min.js?v=2.1.4"></script> <script src="/static/js/bootstrap.min.js?v=3.3.6"></script> <!-- Sweet alert --> <script src="/static/js/plugins/sweetalert/sweetalert.min.js"></script> <script> // 登入 function login() { var userAccount = $("#userAccount").val(); var userPassword = $("#userPassword").val(); if (userAccount == "") { return false; } if (userPassword == "") { // 登入 $.ajax({ url: "/v1/login", type: "GET", data: { userAccount: userAccount, userPassword: userPassword }, success: function (data) { if ("SUCCESS" == data.type) { // 成功 swal({ title: "登入成功", timer: 1000, type: "success", showConfirmButton: false }); } else if ("FAIL" == data.type) { // 失敗 title: data.msg, type: "error", } } }) } </script> </body> </html>
到此這篇關於SpringBoot整合Freemarker的基本步驟的文章就介紹到這了,更多相關SpringBoot整合Freemarker內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45