Freemarker
FreeMarker 是一个用 Java 语言编写的模板引擎,它基于模板来生成文本输出。FreeMarker与 Web 容器无关,即在 Web 运行时,它并不知道 Servlet 或 HTTP。它不仅可以用作表现层的实现技术,而且还可以用于生成 XML,JSP 或 Java 等。
目前企业中:主要用 Freemarker 做静态页面或是页面展示
总结:freemarker 模版引擎,可以使用 Freemarker 模版生成 html 页面。
Freemarker 语法
/** * freemark入门案例 * freemark三要素: * 1.freemark API * 2.数据 * 3.模板文件:ftl文件 * @throws Exception */ @Test public void test1() throws Exception{ //创建freemarker核心配置对象,指定freemarker Configuration cf = new Configuration(Configuration.getVersion()); //指定服务器模板文件所在路径 cf.setDirectoryForTemplateLoading(new File("F:\\template")); //指定模板文件编码 cf.setDefaultEncoding("utf-8"); //从模板文件路径下面获取模板文件对象 Template template = cf.getTemplate("hello.ftl"); //创建map对象,封装模板数据 Map<String,Object> maps = new HashMap<String,Object>(); maps.put("hello", "freemarker入门案例"); //创建一个输出对象,把数据输出daoHtml页面 Writer out = new FileWriter(new File("F:\\template\\out\\quickstart.html")); //生成Html页面 template.process(maps, out); //关闭资源 out.close(); } /** * freemarker模板语法处理特殊数据格式 * 例如:$0.2,20% * 模板语法:$0.2:${price?string.currency} * 20%:${price?string.percent} * @throws Exception */ @Test public void test2() throws Exception{ //创建freemark核心配置对象,指定freemark版本 Configuration cf = new Configuration(Configuration.getVersion()); //指定模板文件所在路径 cf.setDirectoryForTemplateLoading(new File("F:\\template")); //设置模板编码 cf.setDefaultEncoding("utf-8"); //从模板文件路径下面取模板文件对象 Template template = cf.getTemplate("num.ftl"); //创建map对象,封装模板数据 Map<String,Object> maps = new HashMap<>(); maps.put("price", 0.2); //创建输出对象,把数据输出到Html页面 Writer out = new FileWriter(new File("F:\\template\\out\\price.html")); //生成Html页面 template.process(maps, out); //关闭资源 out.close(); } /** * 使用模板语法处理null值 * 模板文件处理语法: * 1.? * 语法:${username?default("张三")} * 2.! * 语法: * ${username!} * ${username!"默认值"} * 3.if * 语法: * <#if username??> * ${username} * </#if> * @throws Exception */ @Test public void test3() throws Exception{ //创建freemark核心配置对象,指定freemarker版本 Configuration cf = new Configuration(Configuration.getVersion()); //指定模板文件所在路径 cf.setDirectoryForTemplateLoading(new File("F:\\template")); //设置模板编码 cf.setDefaultEncoding("utf-8"); //从模板文件路径下获取模板文件对象 Template template = cf.getTemplate("null.ftl"); //创建map对象,封装模板数据 Map<String,Object> maps = new HashMap<>(); maps.put("username", null); //创建输出对象,把数据输出到html页面 Writer out = new FileWriter(new File("F:\\template\\out\\username.html")); //生成html页面 template.process(maps, out); //关闭资源 out.close(); } /** * 使用模板语法处理pojo数据 * el表达式获取数据: * model.addAttribute("p",person); * ${p.username} * ${p.address} * 模板语法获取pojo数据 * model.addAttribute("p",person); * ${p.username} * ${p.address} * @throws Exception */ @Test public void test4() throws Exception{ //创建freemark核心配置对象,指定freemarker版本 Configuration cf = new Configuration(Configuration.getVersion()); //指定模板文件所在路径 cf.setDirectoryForTemplateLoading(new File("F:\\template")); //设置模板编码 cf.setDefaultEncoding("utf-8"); //从模板文件路径下获取模板文件对象 Template template = cf.getTemplate("person.ftl"); //创建map对象,封装模板数据 Map<String,Object> maps = new HashMap<>(); //创建person对象 Person person = new Person(); person.setUsername("张三"); person.setAge(22); maps.put("p", person); //创建输出对象,把数据输出到html页面 Writer out = new FileWriter(new File("F:\\template\\out\\person.html")); //生成html页面 template.process(maps, out); //关闭资源 out.close(); } /** * 使用模板语法处理集合数据 * el表达式获取数据: * model.addAttribute("pList",pList); * <c:foreach item="pList" var="p"> * ${p.username} * ${p.age} * </c:foreach> * 模板语法获取list数据 * model.addAttribute("pList",pList); * <#list pList as p> * ${p.username} * ${p.age} * </#list> * 角标语法:${别名_index} * @throws Exception */ @Test public void test5() throws Exception{ //创建freemark核心配置对象,指定freemarker版本 Configuration cf = new Configuration(Configuration.getVersion()); //指定模板文件所在路径 cf.setDirectoryForTemplateLoading(new File("F:\\template")); //设置模板编码 cf.setDefaultEncoding("utf-8"); //从模板文件路径下获取模板文件对象 Template template = cf.getTemplate("list.ftl"); //创建map对象,封装模板数据 Map<String,Object> maps = new HashMap<>(); //创建list集合 List<Person> pList = new ArrayList<>(); //创建person对象 Person person1 = new Person(); person1.setUsername("张三"); person1.setAge(22); //创建person对象 Person person2 = new Person(); person2.setUsername("李四"); person2.setAge(24); pList.add(person1); pList.add(person2); maps.put("pList", pList); //创建输出对象,把数据输出到html页面 Writer out = new FileWriter(new File("F:\\template\\out\\list.html")); //生成html页面 template.process(maps, out); //关闭资源 out.close(); } /** * 使用模板语法处理时间类型数据 * 获取数据日期:${today?date} * 获取数据时间:${today?time} * 获取数据日期时间:${today?datetime} * 获取数据日期时间格式化:${today?string('yyyy-MM-dd')} * @throws Exception */ @Test public void test6() throws Exception{ //创建freemark核心配置对象,指定freemarker版本 Configuration cf = new Configuration(Configuration.getVersion()); //指定模板文件所在路径 cf.setDirectoryForTemplateLoading(new File("F:\\template")); //设置模板编码 cf.setDefaultEncoding("utf-8"); //从模板文件路径下获取模板文件对象 Template template = cf.getTemplate("date.ftl"); //创建map对象,封装模板数据 Map<String,Object> maps = new HashMap<>(); maps.put("today", new Date()); //创建输出对象,把数据输出到html页面 Writer out = new FileWriter(new File("F:\\template\\out\\date.html")); //生成html页面 template.process(maps, out); //关闭资源 out.close(); }
引入页面
将另一个页面引入本页面时可用以下命令完成
Jsp 引入页面:
Ftl 引入页面:<#include “/include/head.ftl”>
Freemarker 整合 spring
配置整合 Freemarker spring 配置文件:
<!-- freemarker交给spring管理 --> <!-- 使用spring提供模板管理配置对象 --> <bean class="org.springframework.web.servlet.view.freemarker.FreeMarkerConfigurer"> <!-- 模板路径 --> <property name="templateLoaderPath" value="/WEB-INF/fm/" /> <!-- 模板编码 --> <property name="defaultEncoding" value="utf-8" /> </bean>
创建模版对象
Freemarker 放入服务器:WEB-INF 文件夹下面:访问资源文件,必须启动服务器。
在 web.xml 加载 application 的 spring 配置文件:
<!-- 加载springmvc --> <servlet> <servlet-name>springmvc</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <init-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:springmvc.xml,classpath:applicationContext-*.xml</param-value> </init-param> <load-on-startup>1</load-on-startup> </servlet>
Nginx访问
直接访问,加载不了样式资源,必须经过 http 服务器,才能加载静态资源。
此时 nginx 作为 http 服务器来访问静态资源。
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
本文向大家介绍实例讲解PHP页面静态化,包括了实例讲解PHP页面静态化的使用技巧和注意事项,需要的朋友参考一下 页面静态化,顾名思义是将动态的PHP转化为静态的Html,流程如下图 用户访问index.php,如果存在index.html且在有效期内,则直接输出index.html,否则去生成index.html file_put_contents()输出静态文件 ob_start()开启PHP缓
本文向大家介绍详解php实现页面静态化原理,包括了详解php实现页面静态化原理的使用技巧和注意事项,需要的朋友参考一下 1,file_put_contents()函数 2,使用PHP内置缓存机制实现页面静态化:output_buffering php中output_buffering内置函数,简称ob函数,主要会用到的下面几个: ob_start #打开输出控制缓冲 ob_get_contents
本文向大家介绍PHP页面静态化——纯静态与伪静态用法详解,包括了PHP页面静态化——纯静态与伪静态用法详解的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了PHP页面静态化——纯静态与伪静态用法。分享给大家供大家参考,具体如下: 为什么要静态化页面? 当用户访问一个不经常更新的Web页面,PHP接到指示对php脚本文件进行解析,从数据库查询到该页面所需要的数据,然后对页面模板进
所以我的编码器朋友讨厌使用编码。然而我的Java程序中却充满了类之间的链接,而且我有很多! 是否值得重写整个代码来移除静态方法? 用一个比用另一个有什么好处吗?
本文向大家介绍PHP实现HTML页面静态化的方法,包括了PHP实现HTML页面静态化的方法的使用技巧和注意事项,需要的朋友参考一下 随着网站的内容的增多和用户访问量的增多,无可避免的是网站加载会越来越慢,受限于带宽和服务器同一时间的请求次数的限制,我们往往需要在此时对我们的网站进行代码优化和服务器配置的优化。 一般情况下会从以下方面来做优化 动态页面静态化 优化数据库 使用负载均衡 使用缓存 使用
本文向大家介绍Linux静态库与动态库实例详解,包括了Linux静态库与动态库实例详解的使用技巧和注意事项,需要的朋友参考一下 Linux静态库与动态库实例详解 1. Linux 下静态链接库编译与使用 首先编写如下代码: 然后编译: 1. gcc -c test.c //生成目标文件 2. ar crv libtest.a test.o //生成静态链接库libtest.a 3. g++ -o