如何从 Grails 控制器中运行 Gant 目标?

发布于 2024-09-23 23:52:04 字数 182 浏览 3 评论 0原文

假设我有一段 Gant 代码:

 target(echo:"test"){
    ant.echo(message:"hi")
 }
 setDefaultTarget("echo")

这通常从命令行运行。

我如何将该块放入 Grails 控制器中并从那里运行它?

Suppose I have a block of Gant code:

 target(echo:"test"){
    ant.echo(message:"hi")
 }
 setDefaultTarget("echo")

This is usually run from a command line.

How could I place the block in a Grails controller and run it from there?

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

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

发布评论

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

评论(2

懵少女 2024-09-30 23:52:04

您可以使用 AntBuilder 来实现此目的:

class FooController {

   def index = {
      def ant = new AntBuilder()
      ant.echo(message:"hi")
   }
}

You can use AntBuilder for this:

class FooController {

   def index = {
      def ant = new AntBuilder()
      ant.echo(message:"hi")
   }
}
对岸观火 2024-09-30 23:52:04

您可以创建一个包含 Gant 代码的 groovy 脚本(例如 DynaScript_.groovy),并将该脚本文件放置在 {grailsHome}/scripts 文件夹中。

然后您可以从控制器调用脚本文件,如下所示:

class FooController {

     def index = {
           def process  =  "cmd /c grails dyna-script".execute()
           def out = new StringBuilder()
       process.waitForProcessOutput(out, new StringBuilder())
           println "$out" 
     }
}

脚本名称以下划线结尾,这一点很重要。

You can create a groovy script say DynaScript_.groovy that contains your Gant code and place this script file in the {grailsHome}/scripts folder.

And then you can invoke the script file from your controller like this:

class FooController {

     def index = {
           def process  =  "cmd /c grails dyna-script".execute()
           def out = new StringBuilder()
       process.waitForProcessOutput(out, new StringBuilder())
           println "$out" 
     }
}

It's important that your script name ends with an underscore.

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