第一讲 Hello FreeMarker

一、导入jar包

           <dependency>
                <groupId>org.freemarker</groupId>
                <artifactId>freemarker</artifactId>
                <version>2.3.23</version>
           </dependency>

二、FreeMarker案例

  1. 编写模板(index.ftl):

<!DOCTYPEhtml>
<html>
<head>
<metacharset="UTF-8">
<title>我的FreeMarker页面</title>
</head>
<body>
${name}
</body>
</html>

   就是新建一个html页面,然后将后缀名改为ftl

  1. 编写测试类:

publicclassHello {
     
     publicstaticvoid main(String[]args)throwsIOException, TemplateException {
           //Configuration用来读取模板文件
           Configurationcfg= newConfiguration(Configuration.VERSION_2_3_23);
           
           //设置freemarker模板的加载目录
           cfg.setDirectoryForTemplateLoading(newFile("src/main/resources"));
           //根据模板名获得模板
           Templatetemplate= cfg.getTemplate("index.ftl");
           //要显示的数据
           Map<String, String>map=new HashMap<String, String>();
           map.put("name","小薇");
           //根据模板创建静态页面
           Writerwriter=new FileWriter(newFile("src/main/resources/hello.html"));
           template.process(map,writer);
           writer.flush();
           writer.close();
           
           //测试路径
           //F:\
           System.out.println(newFile("/").getAbsolutePath());
           //F:\Java\JavaEE\workspace\freemarker\.
           System.out.println(newFile("./").getAbsolutePath());
           System.out.println("Hello");
     }
     
}

   new File("src/main/resources/hello.html"),只是用来获得文件路径,实际上并没有创建文件。

  1. 测试结果:

   发现在src/main/resources/路径下多了一个hello.html的静态页面。且模板index.ftl${name}也显示为小薇

<!DOCTYPEhtml>
<html>
<head>
<metacharset="UTF-8">
<title>我的FreeMarker页面</title>
</head>
<body>
小薇
</body>
</html>




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值