在 groovyConsole 中导入 Spring 框架会抛出错误

Importing Spring Framework in groovyConsole throws error

我有一个非常简单的 Groovy 脚本:

import org.springframework.*;

@groovy.transform.ToString()
@Controller(name="myHomeController")
class HomeController {

    String home() {

    }
}

当我使用 @Controller 注释时,我使用了菜单选项:

Script -> Import jars into classpath

但是在编译时我收到错误:

1 compilation error:

unable to resolve class Controller ,  unable to find class for annotation
 at line: 2, column: 1

从 groovyConsole 使用 Spring 框架的正确方法是什么?

对于 @Controller 您需要导入的注释:

import org.springframework.stereotype.*