问题标签 [apache-velocity]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
1176 浏览

velocity - 如何从 List 创建子列表 in apache velocity template .vm

I am new to apache velocity, I want to create a subList Object from the List Objects which are coming from some service call in .vm file.

We need to render the list based on

I am new to apache velocity, I want to create a subList Object from the List Objects which are coming from some service call in .vm file.

We need to render the list based on some logic in parts, for that we want to create sublist from list.

$table.getBooks() //contains all the Books objects Below is the sample code which I tried but it did not work.

I executed the code, while rendering $segregatedList is coming as null. I verified $table.getBooks() contains the Objects as when I am passing this,Objects are getting rendered successfully. Can someone please tell what I am doing wrong or how can I create a sublist ?


Cloning ec2 linux instance on aws in local environment

I have a production server running on AWS ec2 instance. Since I was a beginner when I started everything I hadn't use virtual env etc.

Now, there are many dependencies and packages that I have installed somehow. Is there a way to clone entire AWS ec2 instance environment with all the packages into my local machine for dev work. I know from pip freeze I can get all the python dependencies (I have a running Django server). But is there a way to clone everything (from docker etc.).

0 投票
2 回答
2013 浏览

velocity - 将javascript变量传递给速度变量模板

我已xwiki成功安装并能够使用velocity模板语言生成 wiki 页面。

谁能告诉我如何将 javascript 变量传递给速度模板。我经历了几个论坛,我需要将参数传递给服务器才能得到这个,但我不知道。请在下面找到文件。

0 投票
2 回答
937 浏览

velocity - 带双花括号的速度

为什么速度为字符串提供以下输出

输出:

我期待它会打印${{foo}}或者{bar},为什么${{}?双卷曲会充当转义字符吗?

我在设置为 true 的严格参考模式下使用它。而且我既没有看到异常,也没有看到它按原样打印,这让我感到困惑。

0 投票
1 回答
1553 浏览

java - Polarion ALM SDK API getWorkItem()

我对 Polarion SDK API 有疑问

我在一个项目中-> 文档和页面-> 测试。从那里我创建了一个新的 wiki 文章。在文章的编辑中,我做了以下工作:

1) 创建了一个 sql 查询使用:#set ($sql_result = $sqlService.executeQuery("<sql query here>") sql 查询生成一个如下所示的数组:

2)现在我想通过这样做迭代这个多维数组:

不幸的是,Polarion 似乎无法识别 $getWorkItem()。我对此很陌生,我确定我只是错误地调用了该函数。我在这里找到了 API 文档:https ://almdemo.polarion.com/polarion/sdk/doc/javadoc/index.html

它在 TrackerService.getWorkItem()

但我仍然不知道如何正确调用 API。任何帮助将不胜感激。

0 投票
0 回答
280 浏览

java - 显示来自velocity文件的中文字符

我们使用 Apache Velocity 框架将电子邮件模板格式存储在 .vm 文件中。那些电子邮件有汉字内容。在 Java 中检索并显示为字符串时,汉字变成问号。

我们使用此代码将内容提取到字符串中

如果我们想在 System.out 中看到实际的汉字怎么办?

PS:这与其他线程不同,因为下面的行对我不起作用。

尽管添加了“UTF-8”,汉字在打印时仍然变成问号

0 投票
1 回答
105 浏览

velocity - apache速度忽略令牌中的\ n?

有没有办法告诉 apache velocity 忽略令牌中的 \n ?
对于以下密码令牌(第 2 行)
,输出位于第 6 行和第 7 行

更新 有人将此标记为重复,它不是,在我的情况下,新行在令牌中

在此处输入图像描述

0 投票
0 回答
375 浏览

java - Apache Velocity 不呈现 CSS 转换标签

我正在尝试使用 CSS 旋转获得的图像。我已经使用普通的普通 HTML CSS 检查了相同的内容,并且图像确实正在旋转。

以下是我的相同代码:

CSS:

HTML:

它经过测试并按预期工作。

但同样不适用于Apache Velocity Template。标签都是一样的,根本没有变化。图像正在获取但未旋转

有人可以告诉我我哪里出错了吗?

0 投票
1 回答
759 浏览

java - 如何使用 Apache Velocity 和 JavaMail 将图像添加为“内联附件”

我知道这个问题类似于这里的这个问题。但是,我在 Spring Framework 中使用了不同的电子邮件方法,因此添加了一个新问题。

我有一个图像存储在我机器的 /tmp/upload/image 路径中。

从上面提到的同一问题中获取详细信息,我在 Velocity Template 中添加了以下详细信息:

我的电子邮件实用程序执行以下操作:

这是我的服务层,我将属性绑定到我应该发送到我的 Velocity 模板的 HashMap :

“图像”对象包含我的图像文件的路径,我正在尝试将它附加到速度模板中。

但是图像仍未加载到我通过邮件发送的模板中

它会附加一些随机的 Google 生成的链接,因此图像永远不会被附加到第一位。

谁能告诉我我哪里出错了?

0 投票
1 回答
2321 浏览

templates - Apache Velocity - if 子句

Apache Velocity用于创建电子邮件模板。我有一封邮件,其中包含一个包含元素列表的表格,为了创建它,我使用了#foreach.

在此表中,我将添加一个包含条件字符串的列,如果元素为空,则字符串string1is if is not empty are string2

这是我的代码

错误日志

我在堆栈中找不到任何帮助...有人可以帮助我吗?

0 投票
1 回答
406 浏览

amazon-web-services - 身体映射模板中引用后的点(AWS API 网关)

是否可以在 API Gateway 的正文映射模板中的引用之后直接使用点?

我像这样进行字符串连接:

问题是 $apiid 和 $region 没有被取消引用。结果看起来像这样。

如果我使用没有字符串连接的引用,它们具有预期值。所以#set操作似乎是正确的。

我认为它将引用后的点误认为是函数调用。如何逃避速度模板语言中的点?