簡単な Java プログラム Hello.java を作成しました。次のようになります。
public class Hello {
public static void main(String[] args) {
System.out.println("Hello ...");
}
}
grailsで動かしたいので、「hello」というアプリを作って、src/java以下にHello.javaを置いてgrails run-appを実行したのですが、「hello.HelloController」をクリックするとhttp://localhost:8080/hello/
以下のようなエラーが表示されます:
Error 500: Internal Server Error
URI:/hello/hello/index
Class:groovy.lang.MissingPropertyException
Message:No such property: Hello for class: hello.HelloController
HelloController.groovy の内容は次のとおりです。
class HelloController {
def index() {
Hello.main(null)
}
}
誰でも私を助けることができますか?