一、页面静态化1、动静态页面静态页面
即静态网页,指已经装载好内容html页面,无需经过请求服务器数据和编译过程,直接加载到客户浏览器上显示出来。通俗的说就是生成独立的html页面,且不与服务器进行数据交互。
优缺点描述:
静态网页的内容稳定,页面加载速度极快;
不与服务器交互,提升安全性;
静态网页的交互性差,数据实时性很低;
维度成本高,生成很多html页面;
动态页面
指跟静态网页相对的一种网页编程技术,页面的内容需要请求服务器获取,在不考虑缓存的情况下,服务接口的数据变化,页面加载的内容也会实时变化,显示的内容却是随着数据库操作的结果而动态改变的。
优缺点描述:
动态网页的实时获取数据,延迟性低;
依赖数据库交互,页面维护成本很低;
与数据库实时交互,安全控制的成本高;
页面加载速度十分依赖数据库和服务的性能;
动态页面和静态页面有很强的相对性,对比之下也比较好理解。
2、应用场景动态页面静态化处理的应用场景非常多,例如:
大型网站的头部和底部,静态化之后统一加载;
媒体网站,内容经过渲染,直接转为html网页;
高并发下,cdn边缘节点代理的静态网页;
电商网站中,复杂的产品详情页处理;
静态化技术的根本:提示服务的响应速度,或者说使响应节点提前,如一般的流程,页面(客户端)请求服务,服务处理,响应数据,页面装载,一系列流程走下来不仅复杂,而且耗时,如果基于静态化技术处理之后,直接加载静态页面,好了请求结束。
二、流程分析静态页面转换是一个相对复杂的过程,其中核心流程如下:
开发一个页面模板,即静态网页样式;
提供接口,给页面模板获取数据;
页面模板中编写数据接口返参的解析流程;
基于解析引擎,把数据和页面模板合并;
页面模板内容加载完成后转换为html静态页面;
html静态页面上传到文件服务器;
客户端(client)获取静态页面的url加载显示;
主流程大致如上,如果数据接口响应参数有变,则需要重新生成静态页,所以在数据的加载实时性上面会低很多。
三、代码实现案例1、基础依赖freemarker是一款模板引擎:即一种基于模板和要改变的数据,并用来生成输出文本(html网页、电子邮件、配置文件、源代码等)的通用工具。
<dependency> <groupid>org.springframework.boot</groupid> <artifactid>spring-boot-starter-freemarker</artifactid></dependency>
2、页面模板这里既使用freemarker开发的模板样式。
<html><head> <title>pagestatic</title></head><body>主题:${mytitle}<br/><#assign text="{'auth':'cicada','date':'2020-07-16'}" /><#assign data=text?eval />作者:${data.auth} 日期:${data.date}<br/><table class="table table-striped table-hover table-bordered" id="editable-sample"> <thead> <tr> <th>规格描述</th> <th>产品详情</th> </tr> </thead> <tbody> <#list tablelist as info> <tr class=""> <td>${info.desc}</td> <td><img src="${info.imgurl}" height="80" width="80"></td> </tr> </#list> </tbody></table><br/><#list imglist as imgif> <img src="${imgif}" height="300" width="500"></#list></body></html>
freemarker的语法和原有的html语法基本一致,但是具有一套自己的数据处理标签,用起来不算复杂。
3、解析过程通过解析,把页面模板和数据接口的数据合并到一起即可。
@servicepublic class pageserviceimpl implements pageservice { private static final logger logger = loggerfactory.getlogger(pageserviceimpl.class) ; private static final string path = /templates/ ; @override public void ftltohtml() throws exception { // 创建配置类 configuration configuration = new configuration(configuration.getversion()); // 设置模板路径 string classpath = this.getclass().getresource(/).getpath(); configuration.setdirectoryfortemplateloading(new file(classpath + path)); // 加载模板 template template = configuration.gettemplate(my-page.ftl); // 数据模型 map<string, object> map = new hashmap<>(); map.put(mytitle, 页面静态化(pagestatic)); map.put(tablelist,getlist()) ; map.put(imglist,getimglist()) ; // 静态化页面内容 string content = freemarkertemplateutils.processtemplateintostring(template, map); logger.info(content:{},content); inputstream inputstream = ioutils.toinputstream(content,utf-8); // 输出文件 fileoutputstream fileoutputstream = new fileoutputstream(new file(f:/page/newpage.html)); ioutils.copy(inputstream, fileoutputstream); // 关闭流 inputstream.close(); fileoutputstream.close(); } private list<tableinfo> getlist (){ list<tableinfo> tableinfolist = new arraylist<>() ; tableinfolist.add(new tableinfo(constant.desc1, constant.img01)); tableinfolist.add(new tableinfo(constant.desc2,constant.img02)); return tableinfolist ; } private list<string> getimglist (){ list<string> imglist = new arraylist<>() ; imglist.add(constant.img02) ; imglist.add(constant.img02) ; return imglist ; }}
以上就是springboot2中如何使用freemarker模板完成页面静态化处理的详细内容。