1

我将我的项目升级到 grails 2.0.1 但出现了问题:

问题:

Command terminated with an error code (see details for output)
------System.out:-----------
| Loading Grails 2.0.1
| Configuring classpath.
| Environment set to development.....
| Compiling 61 source files.
| Error Compilation error: startup failed:
/home/user/workspace/myProject/grails-app/controllers/myproject/WelcomeController.groovy:
-1: The return type of java.lang.Object wait() in myproject.WelcomeController 
is incompatible with void wait() in java.lang.Object
. At [-1:-1]  @ line -1, column -1.
1 error
------System.err:-----------

笔记:

   i try right click --> Grails Tools -- >
   (Download source jars / & / refresh dependencies / & / grails plugin manager) 
   on my project but problem didn't solve.

有什么帮助吗?

4

1 回答 1

0

似乎您有一个名为 wait() 的操作,它是在 java.lang.object 下的方法中构建的。

您必须更改此方法的名称(不要忘记更改其 gsp 页面的名称)

如果这不能解决您的问题,请转到您的项目目录,显示您的隐藏文件(根据您的操作系统)并打开 .project 文件。

在文件末尾你会发现

它必须是这样的:

<linkedResources>
   <link>
      <name>.link_to_grails_plugins</name>
      <type>2</type>
      <locationURI>GRAILS_ROOT/2.0.1/projects/myproject/plugins</locationURI>
   </link>
</linkedResources>

如果是 GRAILS_ROOT/1.3.7/projects/...

将其更改为 GRAILS_ROOT/2.0.1/projects/...

希望对你有帮助

于 2012-04-17T12:38:02.190 回答