首页 > 其他分享 >SpringMVC中Velocity的配置

SpringMVC中Velocity的配置

时间:2023-11-09 11:08:09浏览次数:30  
标签:directive SpringMVC 配置 user velocity Velocity id foreach


pom.xml所需velocity的jar

<dependency>
			<groupId>org.apache.velocity</groupId>
			<artifactId>velocity</artifactId>
			<version>1.7</version>
		</dependency>
		<dependency>
			<groupId>org.apache.velocity</groupId>
			<artifactId>velocity-tools</artifactId>
			<version>2.0</version>
		</dependency>


servlet-context.xml中添加如下配置:

<beans:bean id="velocityConfig"
		class="org.springframework.web.servlet.view.velocity.VelocityConfigurer">
		<beans:property name="resourceLoaderPath" value="WEB-INF/views/" /><!-- 模板加载路径 -->
		<beans:property name="configLocation"
			value="classpath:config/velocity.properties" /><!-- 配置文件 -->
	</beans:bean>

	<beans:bean id="viewResolver"
		class="org.springframework.web.servlet.view.velocity.VelocityViewResolver">
		<beans:property name="suffix" value=".html" /><!-- 后缀 -->
		<beans:property name="cache" value="false" /><!-- 模板缓存 -->
		<beans:property name="contentType" value="text/html;charset=UTF-8" />
		<beans:property name="dateToolAttribute" value="date" /><!-- 日期处理函数名称 -->
		<beans:property name="numberToolAttribute" value="number" /><!-- 数字处理函数名称 -->
	</beans:bean>



备注:把常用的JSP配置改成Velocity配置




velocity.properties如下配置:


#encoding
input.encoding=UTF-8
output.encoding=UTF-8
contentType=text/html;charset=UTF-8

#autoreload when  changed
file.resource.loader.cache=false
file.resource.loader.modificationCheckInterval  =1
velocimacro.library.autoreload=false
#These foreach config
directive.foreach.counter.name = velocityCount
directive.foreach.counter.initial.value = 1
directive.foreach.maxloops =-1


java代码

@RequestMapping("getUser")
	public String get(HttpServletRequest request, HttpServletResponse response,
			Model model) {
		logger.info("进入用户查询测试方法!");
		String str = request.getParameter("id");
		Integer id = new Integer(str);
		if (id != null && !id.equals("")) {
			User user = userService.getUser(id);
			model.addAttribute("user", user);
		}
		return "home/index";
	}

Velocity的使用

<html>
<head>
<meta charset="utf-8">
</head>
<body>
	<div>hello $!{user.name}!</div>
	
	<div>CreateDate $!date.format('yyyy-MM-dd HH:mm:ss ',${user.createdDate})</div>
	
	<div>Price $!number.format("#0.00", ${price})</div></span>
</body>
</html>



VelocityLayoutViewResolver配置方法


别人以写好了,我就不在做搬运工了!


Spring MVC中配置使用org.springframework.web.servlet.view.velocity.VelocityLayoutViewResolver请参考



标签:directive,SpringMVC,配置,user,velocity,Velocity,id,foreach
From: https://blog.51cto.com/u_809530/8273702

相关文章

  • 2023码尚教育接口自动化框架的实现源码分享pytest+allure+jenkins几乎零代码少量的代
    本框架适合对Pytest有大概认识(比如看完X站3天课程的水平),职场新人没有雄厚的资本去参加专业的培训、功能测试转自动化测试、开发转测试的小伙伴们。首先介绍下这个框架的使用,看看是不是你所需要的。第一步、添加模块PY文件,编写接口代码。classTestJuhe: #upwei:fanfanzb2023......
  • Nginx安装、配置及使用总结
    Nginx的安装、配置及使用总结:Nginx是一个高性能的HTTP及反向代理服务器,也是IMAP/POP3/SMTP代理服务器。在高并发情况下,Nginx突出了它的高性能和稳定性,对比同类服务器技术而言,它是很多国内大中型网站首选的服务器环境。和往常一样,在总结一门新技术时都会先从它的环境配置及使用开始......
  • SqlServer开启远程连接配置
    第一步:打开配置管理器第二步:开启端口监听第三步:设置所有端口均使用1433(或者其他)......
  • Kali 虚拟机网络配置
    1.虚拟机三种网络配置方式1.1桥接模式虚拟机和物理机同时直接连接物理网络(均作为独立主机)1.2NAT模式物理主机作为路由器为虚拟机分配ip地址,虚拟机通过物理主机上网1.3仅主机模式虚拟机仅与物理主机通信,与外部网络隔离,构成内网2.实验2.1Kali虚拟机采用桥接模式;物理机连接校......
  • 【django开发】知识经验总结共50页md文档。今日分享:django配置和数据库操作详解
    Django的主要目的是简便、快速的开发数据库驱动的网站。它强调代码复用,多个组件可以很方便的以"插件"形式服务于整个框架,Django有许多功能强大的第三方插件,你甚至可以很方便的开发出自己的工具包。这使得Django具有很强的可扩展性。它还强调快速开发和DRY(DoNotRepeatYourself)原......
  • Linux/centos上如何配置管理Web服务器?
    (Linux/centos上如何配置管理Web服务器?)1Web简单了解Web服务器称为WWW服务器,主要是提供上网功能;常见的Web服务器有:MicrosoftIIS、IBMWebSphere、Apache、Tomcat等;本文主要以Apache服务器为例了解一些Linux/centos上如何配置管理Web服务器。2关于ApacheApache是一种开......
  • Linux安装配置apache
    1.获取软件: http://httpd.apache.org/ httpd-2.2.21.tar.gz2.安装步骤:解压源文件:1tarzvxfhttpd-2.2.21.tar.gz2cdhttpd-2.2.213./configure--prefix=/usr/local/apache2--enable-so--enable-rewrite4make5makeinstall运行./configure命令进行编译源代......
  • Linux下Mongodb安装和启动配置
    Mongodb的安装与启动下载链接: http://www.mongodb.org/downloads----------------------------------------------------------------------------Linux安装第一步:下载安装包下载版本:2.0.2-rc2下载链接: http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-2.0.4.tgz首先在......
  • rocky linux v9.2 网络配置
         ......
  • PO系列 配置消息报错自动发送邮件(转)
    一前言PO(/PI)是SAP公司的一个中间件产品,用来辅助连接SAP系统与外围系统.(当然外围系统之间也可以使用PO).企业通过PO提供统一的中间件服务平台,所有系统都调用PO的服务或者发布服务让PO调用.如果PO处理消息时出现报错信息,可以通过PO的消息监控器查看报错的消息.这种方式依......