如何为应用程序范围设置变量,即 Grails 控制器中的整个应用程序仅设置 1

发布于 2024-11-25 17:01:03 字数 454 浏览 0 评论 0原文

我想为我的整个应用程序设置一个变量,并且每当请求进入特定操作(

例如

def action = {
    // some integer variable is already set in application scope with name variable
    variable++
    render(view:"action", model:[variable])
}

In Gsp)

<html>
    <body>
        Variable is ${variable}
    </body>
</html>

时我想更新它,输出将是

Variable is 1
// 后续请求
变量为2 等等......

谢谢

i want to set one variable for my entire application and i want to update it whenever a request comes in to a particular action

like

def action = {
    // some integer variable is already set in application scope with name variable
    variable++
    render(view:"action", model:[variable])
}

In Gsp

<html>
    <body>
        Variable is ${variable}
    </body>
</html>

The output would be

Variable is 1
// on subsequent requests
Variable is 2
and so on....

Thanks

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

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

发布评论

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

评论(2

香橙ぽ 2024-12-02 17:01:03

对于此用例,有一些机会:

不要在每个控制器操作中增加“全局”变量,而是使用过滤器。

for this use case there are some opportunities:

Don't increment your 'global' var in every controller action, use a filter instead.

聆听风音 2024-12-02 17:01:03

它需要是整个应用程序中的一个吗?

可以通过使用(单例)服务来处理您的值,例如:

class VariableService {
   int value

   synchronized int get() {
      return value
   }

   synchronized int inc(int value) {
      this.value += value
      return this.value   
   }

   synchronized void set(int value) {
      this.value = value
   }
}

并在您需要的地方使用它

Is it needs to be one across whole app?

Its possible by using an (singleton) service, that will handle your value, like:

class VariableService {
   int value

   synchronized int get() {
      return value
   }

   synchronized int inc(int value) {
      this.value += value
      return this.value   
   }

   synchronized void set(int value) {
      this.value = value
   }
}

and the use it where you need

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