`
huangyunzeng
  • 浏览: 30422 次
  • 性别: Icon_minigender_1
  • 来自: 秦皇岛
社区版块
存档分类
最新评论

利用Velocity Tools2.0 轻松构建Web工程

阅读更多

1、下载Velocity Tools2.0,给出下载链接:http://velocity.apache.org/download.cgi

2、新建web工程,将velocityTools2.0的jar包添加进工程的lib中。

3、修改web.xml文件,修改后的文件是这样的:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN" "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">

<!--
 Licensed to the Apache Software Foundation (ASF) under one
 or more contributor license agreements.  See the NOTICE file
 distributed with this work for additional information
 regarding copyright ownership.  The ASF licenses this file
 to you under the Apache License, Version 2.0 (the
 "License"); you may not use this file except in compliance
 with the License.  You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

 Unless required by applicable law or agreed to in writing,
 software distributed under the License is distributed on an
 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 KIND, either express or implied.  See the License for the
 specific language governing permissions and limitations
 under the License.
-->

<web-app>
  <servlet>
    <servlet-name>velocity</servlet-name>
    <servlet-class>org.apache.velocity.tools.view.VelocityViewServlet</servlet-class>
  </servlet>
  <servlet-mapping>
    <servlet-name>velocity</servlet-name>
    <url-pattern>*.vm</url-pattern>
  </servlet-mapping>
  <welcome-file-list>
    <welcome-file>index.vm</welcome-file>
  </welcome-file-list>
</web-app>

 

4、新建一个java包com.stone.velocity。

5、新建一个javaBean ,类似这样的:

package com.stone.velocity;

public class ToyTool
{
    private String message = "Hello from ToyTool!";

	public String getMessage()
	{
        return message;
	}

    public void setMessage(String m)
    {
        message = m;
    }

    /** To test exception handling in templates. */
    public boolean whine() {
        throw new IllegalArgumentException();
    }

}

 

6、编写tools.xml。

<?xml version="1.0"?>

<!--
 Licensed to the Apache Software Foundation (ASF) under one
 or more contributor license agreements.  See the NOTICE file
 distributed with this work for additional information
 regarding copyright ownership.  The ASF licenses this file
 to you under the Apache License, Version 2.0 (the
 "License"); you may not use this file except in compliance
 with the License.  You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

 Unless required by applicable law or agreed to in writing,
 software distributed under the License is distributed on an
 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 KIND, either express or implied.  See the License for the
 specific language governing permissions and limitations
 under the License.
-->

<tools>
    <data type="boolean" key="xhtml" value="true"/>
    <data type="boolean" key="isSimple" value="true"/>
    <data type="number" key="version" value="2.0"/>
    <data key="foo">this is foo</data>
    <data key="bar">this is bar.</data>
    <toolbox scope="request">
        <tool key="toytool" class="com.stone.velocity.ToyTool" restrictTo="index*"/>
    </toolbox>
    <toolbox scope="session">
        <tool key="map" class="java.util.HashMap"/>
    </toolbox>
</tools>

 

7、创建index.vm和index.jsp,注意这两个文件放在WEBROOT下,如果放在别的地方,注意修改web.xml中的相关设置。

8、index.vm

<html>
<body>

I'm a velocity template processed using the VelocityViewServlet.

#if( $XHTML )
  #set( $br = "<br />" )
#else
  #set( $br = "<br>" )
#end

$br
$br

Here we use a custom tool: $toytool.message

$br
$br

Lets count : #foreach($i in [1..5])$i #end

$br
$br

Let's play with a hashmap:$br
first add foo: $map.put("foo",$foo)$br
then add bar: $map.put("bar",$bar)$br
$br
and that gives us $map

$br
$br

Here we get the date from the DateTool:  $date.medium

$br
$br

#if( $isSimple )
This is simple#if( $XHTML ) xhtml#end app version ${version}.
#end

$br
$br

Click <a href="index.jsp">here</a> to see the VelocityViewTag handle the same VTL markup.

</body>
</html>

 

9、index.jsp.

<html>
<body>

I'm a JSP file that uses the VelocityViewTag.

<velocity:view>
#if( $XHTML )
  #set( $br = "<br />" )
#else
  #set( $br = "<br>" )
#end

$br
$br

Here we use a custom tool: $toytool.message

$br
$br

Lets count : #foreach($i in [1..5])$i #end

$br
$br

Let's play with a hashmap:$br
first add foo: $map.put("foo",$foo)$br
then add bar: $map.put("bar",$bar)$br
$br
and that gives us $map

$br
$br

Here we get the date from the DateTool:  $date.medium

$br
$br

#if( $isSimple )
This is simple#if( $XHTML ) xhtml#end app version ${version}.
#end

$br
$br

Click <a href="index.vm">here</a> to see this VTL markup as a normal template.

</velocity:view>
</body>
</html>

 

10、发布工程并访问,是不是很简单!这里介绍的知识简单的集成方式,还有很多的高级功能,可参考相关文档!

分享到:
评论

相关推荐

    velocity-tools.jar包2.0

    在 `velocity-tools2.0` 中,我们主要关注的是其在版本 2.0 中的新特性、改进和增强。 **1. ** **Velocity View(VV)** Velocity View 是 Velocity Tools 中的一个核心组件,它提供了用于构建 MVC(模型-视图-...

    velocity相关资源包1.7和2.0的

    Velocity是Apache软件基金会的一个开源项目,它是一款Java模板...对于新手,建议先从基础的Velocity模板语言开始学习,然后逐渐熟悉并掌握Velocity Tools的使用,以便更好地利用Velocity构建高效、可维护的Web应用。

    velocity的jar包

    使用这两个jar包,开发者可以轻松地在项目中集成Velocity,构建高效的动态内容生成系统。需要注意的是,在实际使用中,可能还需要依赖其他的库,如log4j进行日志记录,以及可能的其他工具集,根据项目需求进行选择和...

    velocity jar包

    2. **velocity-tools.jar**:这是一个工具集,包含了各种辅助 Velocity 开发的工具类和模块,如视图助手(View Helper)、通用工具(General Utilities)等。这些工具可以帮助开发者更方便地操作数据,如日期时间...

    velocity-1.7.jar

    在实际项目中,将Velocity-1.7.jar与velocity-tools-2.0结合使用,可以构建出强大的动态内容生成系统,尤其是在Web应用开发中,它能够帮助开发者更高效地管理和呈现动态内容,同时保持良好的代码组织结构。...

    Velocity学习资料

    在提供的`velocity-tools-2.0`文件中,包含了这些工具的实现。 学习Velocity时,你需要理解以下关键点: 1. **变量和属性引用**:学会如何正确引用Java对象的属性,以及如何处理可能的空值和异常情况。 2. **控制...

    velocity学习笔记与struts2整合

    总的来说,Velocity与Struts2的整合使得开发者可以利用Velocity的强大模板能力来构建更加灵活和可维护的视图层,同时利用Struts2的控制层来处理业务逻辑和动作。这种方式提高了应用程序的可扩展性和模块化。在实际...

    mytest SSH之二

    1. `velocity-tools-view-1.3.jar`:Velocity Tools 视图库,这是一个基于Apache Velocity模板引擎的工具集,常用于Struts应用中生成动态HTML页面。 2. `jakarta-oro-2.0.8.jar`:Jakarta ORO是一个正则表达式库,为...

    JSP框架介绍.pdf

    **JSP技术简介** ...由于JSP基于Java,因此它...这些框架使得开发者能够更加高效地构建Web应用程序,同时保证了应用程序的稳定性和性能。随着技术的不断进步,JSP框架也在不断发展和完善,以适应不断变化的Web开发需求。

    Maven权威指南 很精典的学习教程,比ANT更好用

    构建一个打包好的命令行应用程序 5. 一个简单的Web应用 5.1. 介绍 5.1.1. 下载本章样例 5.2. 定义这个简单的Web应用 5.3. 创建这个简单的Web应用 5.4. 配置Jetty插件 5.5. 添加一个简单的Servlet 5.6. ...

Global site tag (gtag.js) - Google Analytics