当前位置: 首页 > 工具软件 > FMPP > 使用案例 >

FMPP+Freemarker使用说明

湛联
2023-12-01

是freemarker preprocessor的简称。网页预生成或代码生成器。

FMPP是个从各种数据源CSV、数据库或自定义的tdd文件,然后以freemarker为模板,生成想要的最终文件。

下载网址:

freemarker官网:http://www.freemarker.org

FMPP官网:http://fmpp.sourceforge.net/

 

安装步骤:

1.下载后解压到指定的文件夹下面。注意:文件路径不要带空格。

2.新建环境变量FMPP_HOME ,路径为FMPP的解压主路径。 如:E:\framework\fmpp_0.9.14

3.将该FMPP的bin目录放到环境变量path后面。 %FMPP_HOME%\bin

安装完成。

 

下面测试。

新建一个目录:比如:fmpp_test

该目录下建以下文件目录:

说明:

data:放的是数据文件,比如自定的tdd文件。

src:原文件,一般是你的freemarker模板文件。

out:输出文件存放位置

创建以下文件:

E:\framework\fmpp_test\data\hellowrold.tdd

内容如下:

{
  user:"what"
  workUnit:"mx"
}

 

E:\framework\fmpp_test\src\helloworld.ftl

内容如下:

<html>
<head>
 <title>fmpp 生成文件测试</title>
</head>
<body>
<h1>欢迎 ${user}</h1>
<p>你工作的单位是:${workUnit}</p>
</body>
</html>

 

E:\framework\fmpp_test\config.fmpp

内容如下:

sourceRoot: src
outputRoot: out
logFile: log.fmpp
modes: [execute(*.ftl)]
replaceExtensions:[ftl,html]
sourceEncoding:gb2312
data:tdd(../data/helloworld.tdd)

 

然后用命令行运行:

命令行切换到:E:\framework\fmpp_test

然后运行:fmpp 

即可。

 

结果为:

E:\framework\fmpp_test\out\helloworld.html

内容如下:

<html>
<head>
 <title>fmpp 生成文件测试</title>
</head>
<body>
<h1>欢迎 what</h1>
<p>你工作的单位是:mx</p>
</body>
</html>

 

 

 类似资料: