STS - 运行"弹簧运行" CMD

时间:2015-01-21 07:11:38

标签: spring groovy spring-tool-suite

我想用" spring run"运行一个简单的groovy脚本。 STS内的命令。

需要哪些扩展?我还安装了Grails,Groovy 2.3编译器和Groovy-Eclipse。

MyApp.groovy:

@Controller
class MyApp {

    @RequestMapping("/")
    @ResponseBody
    String message() {
        return "<h1>Hello World!</h1>"
    }
}

1 个答案:

答案 0 :(得分:0)

我认为您正在讨论的命令的当前实现假设该脚本被称为“app.groovy”。所以'MyApp.groovy','Foo.groovy'等不会被此发射器检测为可运行。

参考:https://github.com/spring-projects/spring-ide/blob/3.6.3.RELEASE/plugins/org.springframework.ide.eclipse.boot/plugin.xml#L123