我对使用速度很陌生。我正在尝试使用它来生成 HTML 表单。我在Eclipse工作。以下 jar 在我的类路径中:
velocity-dep-1.5.jar
commons-collections.jar
commons-lang.jar
log4j-1.2.8.jar
ant.jar
我正在运行一个 ant 构建文件来构建我的项目,但我看不到正在生成的 HTML。为了让它实际生成 HTML 文件,我缺少什么吗?我遵循的教程只有两个我基于我的文件。它对作者有用,但也许还有其他一些我没有意识到使用速度的新手。我已经包含了我的代码和构建脚本,以便更容易地查看我是否遗漏了什么。谢谢!
我这里有我的表单的模板代码(form.vm
):
<html>
<head>
<title> My Form </title>
</head>
<body>
#if ($fieldErrors)
#foreach ($error in $fieldErrors)
$error<br>
#end
#end
#if ($actionErrors)
#foreach ($error in $actionErrors)
$error<br>
#end
#end
<form name="edit" action="edit.action" method="post">
<table>
<tr><td>Testing</td><td>123</td></tr>
#foreach($map in $radioList)
#formRowRadio("method" $method "true" $selected)<br/>
#end
</table>
<table>
#foreach($map in $textList)
#formRowText($label $label $value)
#end
<tr><td> </td><td><input type="submit" name="submit" value="submit"></td></tr>
</table>
</form>
</body>
</html>
这是我必须遵循的java代码(formDemo.java
)
import java.io.StringWriter;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Map;
import org.apache.velocity.VelocityContext;
import org.apache.velocity.app.Velocity;
import org.apache.velocity.Template;
public class formDemo {
public static void main ( String[] args )
throws Exception {
Velocity.init();
ArrayList radioList = new ArrayList();
Map map = new HashMap();
map.put("method", "Yes");
map.put("selected", false);
radioList.add(map);
map = new HashMap();
map.put("method", "No");
map.put("selected", false);
radioList.add(map);
/*
* add the list to a VelocityContext
*/
VelocityContext context = new VelocityContext();
context.put("radios", radioList);
ArrayList textList = new ArrayList();
map = new HashMap();
map.put("label", "FirstName");
map.put("value", "");
textList.add(map);
map = new HashMap();
map.put("label", "LastName");
map.put("value", "");
textList.add(map);
context.put("textfields", textList);
Template template = Velocity.getTemplate("form.vm");
StringWriter writer = new StringWriter();
template.merge(context, writer);
}
}
构建脚本 ( build.xml
)
<?xml version='1.0' encoding='UTF-8'?>
<project name="velocityTemplate" default="jar" basedir=".">
<property name='cls' location='${basedir}/classes'/>
<property name='dat' location='${basedir}/data'/>
<property name='gen' location='${basedir}/gen'/>
<property name='lib' location='${basedir}/lib'/>
<property name='src' location='${basedir}/src'/>
<property name='tmp' location='${basedir}/templates'/>
<path id='project.classpath'>
<pathelement location='${cls}'/>
<fileset dir='${lib}' includes='*.jar'/>
</path> <target name='clean' description='Clean.'>
<delete dir='${cls}'/>
<delete dir='${gen}'/>
</target>
<target name='comp' description='Compile the source.'>
<mkdir dir='${cls}'/>
<javac srcdir='${src}' destdir='${cls}' classpathref='project.classpath' fork='true'/>
</target>
<target name='jar' depends='comp' description='JAR the application.'>
<jar destfile='${ant.project.name}.jar' update='false' filesonly='true' index='true'>
<fileset dir='${cls}'/>
<fileset dir='${src}'/>
</jar>
</target>
<target name='run' depends='jar' description='Run the application.'>
<path id='velocityTemplate.classpath'>
<pathelement location='${ant.project.name}.jar'/>
<fileset dir='${lib}' includes='*.jar'/>
</path>
<taskdef classpathref='velocityTemplate.classpath'/>
<mkdir dir='${gen}'/>
<enumerator outputPath='${gen}' inputPath='${dat}' templateFile='${tmp}/form.vm'/>
</target>
<target name='form' description='Creates form'>
<path id='velocityTemplate.classpath'>
<pathelement location='${basedir}/velocityTemplate.jar'/>
<pathelement location='${lib}/velocity-dep-1.5.jar'/>
</path>
<taskdef classpathref='velocityTemplate.classpath'/>
<velocityTemplate outputPath='${basedir}/src' templateFile='${basedir}/form.vm'/>
</target>
</project>
如果你只想看到正在生成的html,你必须打印出StringWriter的值或将其写入文件。
目前,除非缺少代码,否则您只是填满缓冲区。
Template template = Velocity.getTemplate("form.vm");
StringWriter writer = new StringWriter();
template.merge(context, writer);
template.merge(context, writer) 只是将模板呈现给 StringWriter 对象。
我认为您的模板应该如下所示:
<html>
<head>
<title> My Form </title>
</head>
<body>
#if ($fieldErrors)
#foreach ($error in $fieldErrors)
$error<br>
#end
#end
#if ($actionErrors)
#foreach ($error in $actionErrors)
$error<br>
#end
#end
<form name="edit" action="edit.action" method="post">
<table>
<tr><td>Testing</td><td>123</td></tr>
#foreach($map in $radios)
#formRowRadio("method" $map.method "true" $map.selected)<br/>
#end
</table>
<table>
#foreach($map in $textfields)
#formRowText($map.label $map.label $map.value)
#end
<tr><td> </td><td><input type="submit" name="submit" value="submit"></td></tr>
</table>
</form>
</body>
</html>
您还需要有效地将 StringWriter 打印到文件.html。
在您发布的代码中: 有两种运行速度的方法:
- 运行 main(但这不是您在构建项目时要做的事情)
- 运行
ant form
但由于您没有填充任何速度上下文:速度将无法替换模板中的变量(即生成的 HTML 不包含动态数据)
我不确定你需要什么:
是否在构建时使用速度?在这种情况下,您必须运行ant form
然后ant run
(或在comp目标中添加depends="form")。但是,您还必须在构建中为速度提供速度上下文.xml
如果您需要在运行时运行速度:只需使用文件编写器来执行速度合并。
看起来您的构建脚本实际上并没有执行 Java 代码。
尝试使用 java ant 任务,请参见此处:
Ant Java 任务