Velocity 模板基本用法

2024-04-01 15:18
文章标签 模板 用法 基本 velocity

本文主要是介绍Velocity 模板基本用法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

Velocity是一个基于java的模板引擎。它允许任何人仅仅简单的使用模板语言来引用由java代码定义的对象。

当Velocity应用于web开发时,界面设计人员可以和java程序开发人员同步开发一个遵循MVC架构的web站点,也就是说,页面设计人员可以只 关注页面的显示效果,而由java程序开发人员关注业务逻辑编码。Velocity将java代码从web页面中分离出来,这样为web站点的长期维护提 供了便利,同时也为我们在JSP和PHP之外又提供了一种可选的方案。

SpringMVC整合Velocity

1.添加依赖

 <dependency><groupId>velocity</groupId><artifactId>velocity</artifactId><version>${velocity.version}</version>
</dependency>
<dependency><groupId>org.apache.velocity</groupId><artifactId>velocity-tools</artifactId><version>2.0</version>
</dependency>
<dependency><groupId>org.springframework</groupId><artifactId>spring-context-support</artifactId><version>${spring.version}</version>
</dependency>

2.在Spring-mvc.xml中配置Velocity

 <bean id="velocityConfigurer" class="org.springframework.web.servlet.view.velocity.VelocityConfigurer"><property name="resourceLoaderPath" value="/WEB-INF/velocity/" /><!-- 模板存放的路径 --></bean><bean id="velocityLayoutViewResolver" class="org.springframework.web.servlet.view.velocity.VelocityViewResolver"><property name="suffix" value=".vm"/></bean>

velocity.properties

#encoding
input.encoding=UTF-8
output.encoding=UTF-8#autoreload when vm changed
file.resource.loader.cache=false
file.resource.loader.modificationCheckInterval=2
velocimacro.library.autoreload=false

也可以直接在xml中配置

  <bean id="velocityConfigurer" class="org.springframework.web.servlet.view.velocity.VelocityConfigurer"><property name="configLocation" value="classpath:velocity.properties"/><property name="velocityProperties"><props><prop key="directive.foreach.counter.name">loopCounter</prop><prop key="directive.foreach.counter.initial.value">0</prop><prop key="input.encoding">utf-8</prop><!-- 指定模板引擎进行模板处理的编码 --><prop key="output.encoding">utf-8</prop><!-- 指定输出流的编码 --></props></property></bean>

基本用法

1.”#”用来标识Velocity的脚本语句。

如:#set、#if 、#else、#foreach、#end、#include、#parse、#macro等。

2.”$”用来标识一个对象(或理解为PHP的变量)

如:i、i、user等。

3.”{}”用来明确标识Velocity变量,和普通模版字符串区分开来;

如:${user}‘s age 可以显示为 riqi’s age。

4.”!”强制把不存在的变量显示为空白。

如:!msg,假如msg对象为空,则模版中不显示该变量;如果缺少”!”,则显示!msg,假如msg对象为空,则模版中不显示该变量;如果缺少”!”,则显示msg字符串,这是我们不想要的结果。

5.变量的定义和赋值。不需要指定变量的类型,类似弱类型语言PHP可以随意指定,在赋值后自动判定变量的类型,如:

#set($username="riqi") ##设置用户名
#set($age=26) ##设置年龄

6.数组循环:

#foreach ($user in $users)$!{user} $!{velocityCount} <br /> 
#end

users可以是Vector、Hashtable或者Array,Velocity提供了得到循环次数的值:users可以是Vector、Hashtable或者Array,Velocity提供了得到循环次数的值:velocityCount。

7.语句注释:

单行注释:## 单行注释代码

多行注释:#* 多行注释代码 *#

8.模版支持关系和逻辑操作符运算,如:&&、||、! 等

9.宏定义:#macro ,类似PHP声明一个函数,其中有函数名称和参数列表。先定义再调用。

10.终止命令:#stop,类似PHP的exit(); 停止执行模板引擎并返回。

11.引入公共模版文件:#include与#parse,它们的差异是:

(1) 与#include不同的是,#parse只能指定单个对象。而#include可以有多个

如果您需要引入多个文件,可以用逗号分隔就行:

#include ("one.gif", "two.txt", "three.htm" )

在括号内可以是文件名,但是更多的时候是使用变量的:

#include ( “greetings.txt”, $seasonalstock )

(2) #include被引入文件的内容将不会通过模板引擎解析;

#parse引入的文件内容Velocity将解析其中的velocity语法并移交给模板,意思就是说相当与把引入的文件copy到文件中。

(3) #parse是可以递归调用的。

12.转义字符’\’.

这个和其它语言没有差异,假如:user=”riqi”;那么, useruser="riqi"; user表示输出user字符串,$user表示输出\riqi。

13.Velocity内置了一部分java对象 如:request、request、response、$session等,在vm模版里可以直接调用。

细节整理:

Velocity判断某个变量是否为空的方式:

#if($!变量名)……#else……#end

或者:

#if("" == $!varName)……#else……#end

例子

package controller;import model.User;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;import java.sql.Date;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;/*** VelocityController* Velocity模板引擎* Created by heqianqian on 2017/4/27.*/
@Controller
@RequestMapping("/velocity")
public class VelocityController {@RequestMapping("/show")public String show(Map<String, Object> map) {List<User> userList = new ArrayList<User>();SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");for (int i = 0; i < 10; i++) {userList.add(new User(i, "hqq" + i));}map.put("userList", userList);return "show";}
}
<!DOCTYPE html>
<html>
<head><meta http-equiv="Content-Type" content="text/html;charset=utf-8"/><title>Show</title>
</head>
<body>
<h1>Velocity</h1>
<hr/>
<h2>1. "#"用来标识Velocity的脚本语句。</h2>
<h3>1.1 \#set</h3>
#set($username="riqi")
#set($age=26)
用户名: $username
年龄: $age
<h3>1.2 \#if</h3>
#if($age>18)
$username is not teenager
#else$username is teenager
#end
<h3>1.3 \#foreach</h3>
<ul>
#foreach($user in $userList)<li>$user.id:$user.name</li>
#end
</ul>
<h3>1.4 \#include</h3>
#include("../file/note.txt")
</body>
</html>

这篇关于Velocity 模板基本用法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/867487

相关文章

基本知识点

1、c++的输入加上ios::sync_with_stdio(false);  等价于 c的输入,读取速度会加快(但是在字符串的题里面和容易出现问题) 2、lower_bound()和upper_bound() iterator lower_bound( const key_type &key ): 返回一个迭代器,指向键值>= key的第一个元素。 iterator upper_bou

poj3468(线段树成段更新模板题)

题意:包括两个操作:1、将[a.b]上的数字加上v;2、查询区间[a,b]上的和 下面的介绍是下解题思路: 首先介绍  lazy-tag思想:用一个变量记录每一个线段树节点的变化值,当这部分线段的一致性被破坏我们就将这个变化值传递给子区间,大大增加了线段树的效率。 比如现在需要对[a,b]区间值进行加c操作,那么就从根节点[1,n]开始调用update函数进行操作,如果刚好执行到一个子节点,

C++11第三弹:lambda表达式 | 新的类功能 | 模板的可变参数

🌈个人主页: 南桥几晴秋 🌈C++专栏: 南桥谈C++ 🌈C语言专栏: C语言学习系列 🌈Linux学习专栏: 南桥谈Linux 🌈数据结构学习专栏: 数据结构杂谈 🌈数据库学习专栏: 南桥谈MySQL 🌈Qt学习专栏: 南桥谈Qt 🌈菜鸡代码练习: 练习随想记录 🌈git学习: 南桥谈Git 🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈�

poj 1258 Agri-Net(最小生成树模板代码)

感觉用这题来当模板更适合。 题意就是给你邻接矩阵求最小生成树啦。~ prim代码:效率很高。172k...0ms。 #include<stdio.h>#include<algorithm>using namespace std;const int MaxN = 101;const int INF = 0x3f3f3f3f;int g[MaxN][MaxN];int n

uva 1342 欧拉定理(计算几何模板)

题意: 给几个点,把这几个点用直线连起来,求这些直线把平面分成了几个。 解析: 欧拉定理: 顶点数 + 面数 - 边数= 2。 代码: #include <iostream>#include <cstdio>#include <cstdlib>#include <algorithm>#include <cstring>#include <cmath>#inc

uva 11178 计算集合模板题

题意: 求三角形行三个角三等分点射线交出的内三角形坐标。 代码: #include <iostream>#include <cstdio>#include <cstdlib>#include <algorithm>#include <cstring>#include <cmath>#include <stack>#include <vector>#include <

【IPV6从入门到起飞】5-1 IPV6+Home Assistant(搭建基本环境)

【IPV6从入门到起飞】5-1 IPV6+Home Assistant #搭建基本环境 1 背景2 docker下载 hass3 创建容器4 浏览器访问 hass5 手机APP远程访问hass6 更多玩法 1 背景 既然电脑可以IPV6入站,手机流量可以访问IPV6网络的服务,为什么不在电脑搭建Home Assistant(hass),来控制你的设备呢?@智能家居 @万物互联

poj 2104 and hdu 2665 划分树模板入门题

题意: 给一个数组n(1e5)个数,给一个范围(fr, to, k),求这个范围中第k大的数。 解析: 划分树入门。 bing神的模板。 坑爹的地方是把-l 看成了-1........ 一直re。 代码: poj 2104: #include <iostream>#include <cstdio>#include <cstdlib>#include <al

最大流、 最小费用最大流终极版模板

最大流  const int inf = 1000000000 ;const int maxn = 20000 , maxm = 500000 ;struct Edge{int v , f ,next ;Edge(){}Edge(int _v , int _f , int _next):v(_v) ,f(_f),next(_next){}};int sourse , mee

bytes.split的用法和注意事项

当然,我很乐意详细介绍 bytes.Split 的用法和注意事项。这个函数是 Go 标准库中 bytes 包的一个重要组成部分,用于分割字节切片。 基本用法 bytes.Split 的函数签名如下: func Split(s, sep []byte) [][]byte s 是要分割的字节切片sep 是用作分隔符的字节切片返回值是一个二维字节切片,包含分割后的结果 基本使用示例: pa