- 浏览: 203537 次
- 性别:
- 来自: 南京
-
文章分类
最新评论
-
yixinhu:
你好 能加下你的QQ么 我怎么打出来的exe点击都没反应啊.. ...
java 生成exe 文件 -
chenxiang105:
如果不需要flash 只需要做图片的翻页效果 这个是否也合适类 ...
jQuery插件page peel AD实现动态卷页、翻页或卷角flash广告效果 -
tuoxie007:
幸苦,好文章!
jetspeed门户项目组介绍 -
bobo:
需要考虑不同浏览器的兼容性
通过网页访问本地资源程序 -
tag13346:
说得这么玄,看下
时空趋势理论 --- 超越时空的均线技术(转载 )
关键字: 模板技术
/**
*作者:张荣华(ahuaxuan)
*2007-04-16
*转载请注明出处及作者
*/
模板技术在现代的软件开发中有着重要的地位,而目前最流行的两种模板技术恐怕要算freemarker和velocity
velocity
作为view,模板技术作为view的好处是很多,尤其和jsp
比较起来优点更大,众所周知jsp
需要在第一次被执行的时候编译成servlet,那么这个过程是很慢的,当然很多应用服务器都提供预编译的功能,但是在开发的时候仍然给我们程序员带来了很多痛苦,每次修改都要多几秒钟,那在一天的开发中就有很多时间浪费在jsp
的编译上了。用webwork in action的作者的话来说:“每次修改之后重新运行都要等等几秒是令人失望的,而频繁地修改jsp
更是会令你的失望情绪变本加厉“。我们把模板技术引入到view中去可以带来更好的开发效率,而且模板的速度要比jsp
快(虽然编译过后的jsp
在速度上已经满足我的需求了,呵呵)。 当然模板技术可以用在很多领域,可不只在view那里。我们可以通过模板技术来生成xml,生成jsp
,生成java文件等等,说到这里,大家通常会使用模板技术用在公司的框架里,这样就可以很快速的生成添删改查的代码,需要的只是模板,其他比如还有邮件模板等等。
以上是模板的作用,当然模板还有其他领域的应用,希望能和大家多讨论,提高我们的生产效率。
那么现在开源的模板技术有好几种,多了之后就有一个选择的问题了,如何选择一个满足自己需要的模板的呢,我大概了看了一下两种模板技术,写了一个例子,我使用了几种设计模式来完成了这个例子,这个例子中,我同时使用了freemarker和velocity
,这样同学们可以通过代码很直观的比较两种模板技术,通过这个例子,我认识到freemarker在功能上要比velocity
强大
1在view层的时候,它提供了format日期和数字的功能,我想大家都有在页面上format日期或数字的经验,用jsp
的同学可能对jstl的fmt标签很有感情,使用了freemarker之后也可以使用freemarker提供的功能来formmat日期和数据,这个功能我想是很贴心的
2通过我的使用我发现freemaker的eclipseplugin要比velocity
的eclipseplugin好,如果你是用idea那很遗憾,我没有找到类似的插件。好在很多地方呢,我看到的是freemarker的插件除了支持freemarker语法也支持html语句,而velocity
的插件貌似只支持velocity
的语法,html就只是用普通的文本来显示了,在这一点上freemarker占上风了(不要和我说高手都是用windows记事本之类的话,这本来就违背了模板技术的初衷)
3freemarker对jsptag的支持很好,算了,不到迫不得已还是不要这样做吧。
还有就是两者的语法格式,这一点上不同的人有不同倾向
下面就介绍一下这个例子吧
了,webwork2.2对两者都有不错的支持,也就是说在webwork2中你可以随意选择使用freemarker或
- /**
- *
- * @author 张荣华
- * 转载请注明出处
- */
- public class TemplateTest {
- /**
- * @param args
- */
- public static void main(String[] args) throws Exception{
- /* 准备数据 */
- Map latest = new HashMap();
- latest.put( "url" , "products/greenmouse.html" );
- latest.put( "name" , "green mouse" );
- Map root = new HashMap();
- root.put( "user" , "Big Joe" );
- root.put( "latestProduct" , latest);
- root.put( "number" , new Long( 2222 ));
- root.put( "date" , new Date());
- List listTest = new ArrayList();
- listTest.add( "1" );
- listTest.add( "2" );
- root.put( "list" ,listTest);
- TemplateEngine freemarkerEngine = (TemplateEngine)TemplateFactory.getInstance().getBean( "freemarker" );
- freemarkerEngine.run(root); //使用freemarker模板技术
- TemplateEngine velocityEngine = (TemplateEngine)TemplateFactory.getInstance().getBean( " velocity " );
- velocityEngine.run(root); //使用 velocity 模板技术
- }
- }
/**
*
* @author 张荣华
* 转载请注明出处
*/
public class TemplateTest {
/**
* @param args
*/
public static void main(String[] args) throws Exception{
/* 准备数据 */
Map latest = new HashMap();
latest.put("url", "products/greenmouse.html");
latest.put("name", "green mouse");
Map root = new HashMap();
root.put("user", "Big Joe");
root.put("latestProduct", latest);
root.put("number", new Long(2222));
root.put("date",new Date());
List listTest = new ArrayList();
listTest.add("1");
listTest.add("2");
root.put("list",listTest);
TemplateEngine freemarkerEngine = (TemplateEngine)TemplateFactory.getInstance().getBean("freemarker");
freemarkerEngine.run(root);//使用freemarker模板技术
TemplateEngine velocityEngine = (TemplateEngine)TemplateFactory.getInstance().getBean("velocity
velocity
");
velocityEngine.run(root);//使用
模板技术
}
}
工厂类,用来得到模板引擎
- /**
- *
- * @author 张荣华
- * 转载请注明出处
- */
- public class TemplateFactory {
- private static TemplateFactory instance;
- private Map objectMap;
- static {
- instance = new TemplateFactory();
- }
- public TemplateFactory() {
- super ();
- this .objectMap = new HashMap();
- synchronized ( this ) {
- objectMap.put( "freemarker" , new FreemarkerTemplateEngine(){
- public String getTemplatePath() {
- return "template" ;
- }
- });
- objectMap.put( " velocity " , new VelocityTemplateEngine());
- }
- }
- public static TemplateFactory getInstance(){
- return instance;
- }
- /**
- * 模仿spring的工厂
- * @param beanName
- * @return
- */
- public Object getBean(String beanName){
- return objectMap.get(beanName);
- }
- }
/**
*
* @author 张荣华
* 转载请注明出处
*/
public class TemplateFactory {
private static TemplateFactory instance;
private Map objectMap;
static{
instance = new TemplateFactory();
}
public TemplateFactory() {
super();
this.objectMap = new HashMap();
synchronized (this) {
objectMap.put("freemarker", new FreemarkerTemplateEngine(){
public String getTemplatePath() {
return "template";
}
});
objectMap.put("velocity
", new VelocityTemplateEngine());
}
}
public static TemplateFactory getInstance(){
return instance;
}
/**
* 模仿spring的工厂
* @param beanName
* @return
*/
public Object getBean(String beanName){
return objectMap.get(beanName);
}
}
引擎接口
- /**
- *
- * @author 张荣华
- * 转载请注明出处
- */
- public interface TemplateEngine {
- void run(Map context) throws Exception;
- }
/**
*
* @author 张荣华
* 转载请注明出处
*/
public interface TemplateEngine {
void run(Map context)throws Exception;
}
模板引擎的实现使用method template模式,因为有两个实现,这两个实现又存在公共的逻辑,所以选择了这个模式
- /**
- *
- * @author 张荣华
- * 转载请注明出处
- */
- public abstract class AbstractTemplateEngine implements TemplateEngine{
- public abstract String getTemplatePath();
- public abstract String getTemplate();
- public abstract String getEngineType();
- public void run(Map context) throws Exception{
- if (Constants.ENGINE_TYPE_FREEMARKER.equals(getEngineType()))
- executeFreemarker(context);
- else
- executeVelocity(context);
- }
- private void executeFreemarker(Map context) throws Exception{
- Configuration cfg = new Configuration();
- cfg.setDirectoryForTemplateLoading(
- new File(getTemplatePath()));
- cfg.setObjectWrapper( new DefaultObjectWrapper());
- cfg.setCacheStorage( new freemarker.cache.MruCacheStorage( 20 , 250 ));
- Template temp = cfg.getTemplate(getTemplate());
- Writer out = new OutputStreamWriter(System.out);
- temp.process(context, out);
- out.flush();
- }
- private void executeVelocity(Map root) throws Exception{
- Velocity .init();
- VelocityContext context = new VelocityContext(root);
- org.apache.velocity .Template template = null ;
- template = Velocity .getTemplate(getTemplatePath()+getTemplate());
- StringWriter sw = new StringWriter();
- template.merge( context, sw );
- System.out.print(sw.toString());
- }
- }
/**
*
* @author 张荣华
* 转载请注明出处
*/
public abstract class AbstractTemplateEngine implements TemplateEngine{
public abstract String getTemplatePath();
public abstract String getTemplate();
public abstract String getEngineType();
public void run(Map context)throws Exception{
if(Constants.ENGINE_TYPE_FREEMARKER.equals(getEngineType()))
executeFreemarker(context);
else
executeVelocity(context);
}
private void executeFreemarker(Map context)throws Exception{
Configuration cfg = new Configuration();
cfg.setDirectoryForTemplateLoading(
new File(getTemplatePath()));
cfg.setObjectWrapper(new DefaultObjectWrapper());
cfg.setCacheStorage(new freemarker.cache.MruCacheStorage(20, 250));
Template temp = cfg.getTemplate(getTemplate());
Writer out = new OutputStreamWriter(System.out);
temp.process(context, out);
out.flush();
}
private void executeVelocity(Map root)throws Exception{
Velocity
velocity
Velocity
.init();
VelocityContext context = new VelocityContext(root);
org.apache.
.Template template = null;
template =
.getTemplate(getTemplatePath()+getTemplate());
StringWriter sw = new StringWriter();
template.merge( context, sw );
System.out.print(sw.toString());
}
}
这个是freemarker实现
- /**
- *
- * @author 张荣华
- * 转载请注明出处
- */
- public class FreemarkerTemplateEngine extends AbstractTemplateEngine{
- private static final String DEFAULT_TEMPLATE = "FreemarkerExample.ftl" ;
- /**
- * 这个方法应该实现的是读取配置文件
- */
- public String getTemplatePath() {
- return null ;
- }
- public void run(Map root) throws Exception{
- super .run(root);
- }
- public String getTemplate() {
- // TODO Auto-generated method stub
- return DEFAULT_TEMPLATE;
- }
- public String getEngineType() {
- return Constants.ENGINE_TYPE_FREEMARKER;
- }
- }
/**
*
* @author 张荣华
* 转载请注明出处
*/
public class FreemarkerTemplateEngine extends AbstractTemplateEngine{
private static final String DEFAULT_TEMPLATE = "FreemarkerExample.ftl";
/**
* 这个方法应该实现的是读取配置文件
*/
public String getTemplatePath() {
return null;
}
public void run(Map root) throws Exception{
super.run(root);
}
public String getTemplate() {
// TODO Auto-generated method stub
return DEFAULT_TEMPLATE;
}
public String getEngineType() {
return Constants.ENGINE_TYPE_FREEMARKER;
}
}
这个是velocity 实现
- /**
- *
- * @author 张荣华
- * 转载请注明出处
- */
- public class VelocityTemplateEngine extends AbstractTemplateEngine{
- private static final String DEFAULT_TEMPLATE = "VelocityExample.vm" ;
- public String getTemplatePath() {
- return "/template/" ;
- }
- public void run(Map map) throws Exception{
- super .run(map);
- }
- public String getTemplate() {
- // TODO Auto-generated method stub
- return DEFAULT_TEMPLATE;
- }
- public String getEngineType() {
- // TODO Auto-generated method stub
- return Constants.ENGINE_TYPE_VELOCITY;
- }
- }
/**
*
* @author 张荣华
* 转载请注明出处
*/
public class VelocityTemplateEngine extends AbstractTemplateEngine{
private static final String DEFAULT_TEMPLATE = "VelocityExample.vm";
public String getTemplatePath() {
return "/template/";
}
public void run(Map map) throws Exception{
super.run(map);
}
public String getTemplate() {
// TODO Auto-generated method stub
return DEFAULT_TEMPLATE;
}
public String getEngineType() {
// TODO Auto-generated method stub
return Constants.ENGINE_TYPE_VELOCITY;
}
}
以下是模板
1,freemarker模板
- freemarker template test:
- string test-----------${user}-----------${number}-----------${latestProduct.url}-----------${latestProduct.name}
- condition test-----------
- <# if user == "Big Joe" >
- list iterator-----------
- <#list list as aa>
- ${aa}
- </#list>
- </# if >
- date test-----------${date?string( "MMM/dd/yyyy" )}
freemarker template test:
string test-----------${user}-----------${number}-----------${latestProduct.url}-----------${latestProduct.name}
condition test-----------
<#if user == "Big Joe">
list iterator-----------
<#list list as aa>
${aa}
</#list>
</#if>
date test-----------${date?string("MMM/dd/yyyy")}
2,velocity
模板
- ******************************************************************************************************************
- velocity template test:
- string test-----------${user}-----------${number}-----------${latestProduct.url}-----------${latestProduct.name}
- condition test-----------
- # if ($user == "Big Joe" )
- list iterator-----------
- #foreach( $aa in $list )
- $aa
- #end
- #end
- date test-----------${date}
******************************************************************************************************************
velocity
template test:
string test-----------${user}-----------${number}-----------${latestProduct.url}-----------${latestProduct.name}
condition test-----------
#if ($user == "Big Joe")
list iterator-----------
#foreach( $aa in $list )
$aa
#end
#end
date test-----------${date}
至此整个例子就结束了,以上只是最简单的介绍,当然这两种技术还有待我们的深入研究。这个例子只不过是比较直观的表现两种技术的使用而已
而且如果想学习方法模板模式和工厂模式的同学可以下载代码看看
作者:张荣华,未经作者同意不得随意转载!
发表评论
-
配置 weblogic JMS 连接
2011-05-11 19:25 4658jms 的优点 它可以把不影响用户执行结果又比较耗时的任务 ... -
应用服务器设为服务的方法
2011-01-05 11:03 9771.将Tomcat 5以上版本设置成服务 (假设我们缺省的T ... -
java 生成exe 文件
2010-03-15 11:25 6912对于作Java桌面应 ... -
linux 下jdk ,jboss的安装和jboss的自启动
2009-09-15 13:09 2545A。 linux下 JDK的安装 ... -
如何用java远程访问Domino邮箱数据2
2009-08-14 16:54 1581遍历邮箱数据库的所有 Document : ... -
Java访问Domino(Java,Domino,diiop,远程访问)
2009-08-14 16:17 11882一、概述 Java 对 Domino Obje ... -
如何用java远程访问Domino邮箱数据1
2009-08-14 16:16 3122应用场景 我们需 ... -
实战Concurrent
2009-04-23 12:41 867DigitalSonic 写道 编写 ... -
httpclient 模拟登陆网站 获取网站内容程序
2009-03-22 08:24 3310package org.apache.http.example ... -
JAVA-用HttpClient来模拟浏览器GET,POST2
2009-03-20 00:23 29375. 提交XML格式参数提交XML格式的参数很简单,仅仅是一 ... -
JAVA-用HttpClient来模拟浏览器GET,POST1
2009-03-20 00:21 1194一般的情况下我们都是使用IE或者Navigator浏览器来访问 ...
相关推荐
Velocity和Freemarker模板技术比较 模板技术在现代软件开发中扮演着重要角色,而在目前最流行的两种模板技术中, Velocity 和 Freemarker 独占鳌头。在 WebWork2 中,我们可以随意选择使用 Freemarker 或 Velocity ...
以上是对Velocity和FreeMarker的基本介绍和比较,它们都是Java Web开发中的重要工具,理解它们的特性和应用场景有助于选择最适合项目的技术栈。对于标签“源码”和“工具”,我们可以进一步研究这两个模板引擎的源...
在众多模板引擎中,Velocity和FreeMarker是两种非常受欢迎的选择。下面我们将从多个方面对这两种模板引擎进行详细的比较。 #### 一、简介 - **Velocity**:是一个基于Java的模板引擎,它允许开发者使用简单的模板...
本文将重点介绍三种常用的Java Web模板引擎:JSP(Java Server Pages)、Freemarker以及Velocity,并对它们进行深入比较。 #### JSP (Java Server Pages) JSP是一种基于Java技术的服务器端动态网页技术,通过在...
本篇文章将对四个流行的Java模板引擎——Velocity、FreeMarker、Smarty4j以及HTTL进行效率分析,旨在探讨它们在处理业务逻辑编译和性能方面的优劣。 1. Velocity: Velocity是Apache软件基金会的一个开源项目,以其...
Freemarker和Velocity是两种广泛使用的模板引擎,它们在Java Web开发中扮演着重要的角色,主要用于生成动态HTML或其他格式的文本。这两者都是基于MVC(Model-View-Controller)设计模式,允许开发者将业务逻辑与展示...
虽然Velocity和Freemarker都是视图模板引擎,但它们有各自的特性和优缺点: 1. **语法简洁性**:Freemarker的语法可能更为简洁,如其使用`<#if>`、`<#foreach>`等,而Velocity则使用`#if`、`#foreach`。 2. **灵活...
例如,Freemarker插件可以帮助快速定位模板中的语法错误,而Velocity插件则可以提供模板变量和方法的智能提示,减少出错的可能性。 总的来说,Freemarker和Velocity的Eclipse插件对于Java Web开发者来说是必不可少...
- **include与parse**:为了实现页面布局的模块化,Velocity提供了`#include`和`#parse`两种方式来引入其他模板文件。`#include`主要用于简单地插入另一个文件的内容而不执行其中的Velocity语法;`#parse`则不仅会...
Velocity、Freemarker和Thymeleaf都是Java领域的模板引擎,它们各有特点。Freemarker语法更为复杂,但功能更强大;Thymeleaf强调的是XML友好的语法,更适合静态页面的生成。Velocity则以其简洁和易用性受到许多...
标题 "大型商城网站springmvc+freemarker+velocity+ibatis" 暗示了这是一个基于SpringMVC、Freemarker、Velocity和iBatis框架构建的电子商务平台。这个项目可能是一个B2C(Business-to-Consumer)类型的商城,允许...
Velocity和FreeMarker是两种常用的Java模板引擎,它们可以方便地结合JSP(JavaServer Pages)进行动态网页生成,并实现页面静态化。本文将详细介绍如何使用Velocity和FreeMarker模板实现页面静态化,并提供具体的...
4. **Freemarker**: 虽然Velocity和Freemarker都是模板引擎,但它们各有特点,可以根据项目需求选择合适的工具。 总之,Velocity作为一款强大的模板引擎,对于Web开发中的前后端分离有着重要作用,它的简单性和灵活...
Velocity是一个开源的Java模板引擎,它允许开发者将HTML与Java代码分离,使Web开发者...对于新项目,考虑使用更新的版本(如Velocity 2.x)或者其他的模板引擎,如FreeMarker或Thymeleaf,可能会带来更多的优势和功能。
Velocity与JSP、FreeMarker等其他模板引擎相比,有其独特优势。Velocity的语法简洁,更接近自然语言,且由于它不支持脚本,避免了在模板中引入过多的业务逻辑,使得模板更加纯粹。此外,Velocity的性能也相对较高,...
这个压缩包提供的就是一套基于Freemarker模板的代码生成器模板文件,分别对应控制器(Controller)、实体类(Bean)、服务接口(Service)和服务实现(ServiceImpl)、数据访问对象(Dao)。 1. **Controller.ftl**...
在Java中,Freemarker与ModelAndView、Velocity等模板引擎类似,它通过模板语言(Template Language)来描述数据如何被渲染。下面我们将详细探讨如何使用Freemarker来导出Excel、Word和HTML。 1. **导出Excel** - ...
在这个话题中,我们将深入探讨SpringMVC与两种常用的模板引擎——Velocity和FreeMarker的集成与应用。 首先,让我们了解SpringMVC的基本架构。在SpringMVC中,DispatcherServlet是入口点,它负责接收HTTP请求并根据...