如何:使用请求中的值在速度宏之间进行计数

发布于 2024-12-13 08:33:32 字数 346 浏览 1 评论 0原文

我需要计算调用速度宏的频率。

像这样:

#macro( doSometing )

  #set($counter= $counter + 1)
  i'm used ${counter} times.
#end

我尝试首先在jsp中创建var:

<c:set var="counter" scope="request">1</c:set>

但随后它将始终是2

ps 首先添加此后: #set ($counter = $Integer.parseInt($counter))

i need to count how often a velocity macro is called.

something like:

#macro( doSometing )

  #set($counter= $counter + 1)
  i'm used ${counter} times.
#end

i tried to create the var in the jsp first with this:

<c:set var="counter" scope="request">1</c:set>

but then it will always be 2

ps
after adding this first:
#set ($counter = $Integer.parseInt($counter))

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

甜嗑 2024-12-20 08:33:32
#macro( doSometing )

    #if(!$counter)
         #set($counter= 0)
    #end

    #set($counter= $counter + 1)
    i used ${counter} times.
#end

这可能取决于速度配置,但通常速度变量是全局的并且在请求的持续时间内存在

#macro( doSometing )

    #if(!$counter)
         #set($counter= 0)
    #end

    #set($counter= $counter + 1)
    i used ${counter} times.
#end

This can depend on velocity config but generally velocity variables are global and exist for the duration for the request

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文