Java AppEngine上的GWT-方法重构后的不兼容RemoteServiceException

Java AppEngine上的GWT-方法重构后的不兼容RemoteServiceException,java,google-app-engine,caching,gwt,Java,Google App Engine,Caching,Gwt,我有一个GWT应用程序托管在谷歌应用程序引擎上。在我重命名RPC方法“test()”之前,它一直运行良好,现在出现以下错误: javax.servlet.ServletContext log: greetServlet: An IncompatibleRemoteServiceException was thrown while processing this call. com.google.gwt.user.client.rpc.IncompatibleRemoteServiceExcept

我有一个GWT应用程序托管在谷歌应用程序引擎上。在我重命名RPC方法“test()”之前,它一直运行良好,现在出现以下错误:

javax.servlet.ServletContext log: greetServlet: An IncompatibleRemoteServiceException was thrown while processing this call.
com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException: This application is out of date, 
please click the refresh button on your browser. ( Could not locate requested method 'test(java.lang.String, long)' in interface 'de.test.client.GreetingService' )
出于某种原因,它仍在寻找该方法的旧签名。我已经多次编译和清理我的项目并重新部署它,我清除了浏览器缓存并尝试了不同的浏览器。在开发模式下,它也可以正常工作


是否有一些额外的缓存内置到应用程序引擎或其他什么?是否有人遇到过类似问题?

请确保此方法的签名在Service、ServiceAsync和ServiceImpl中相同。例如,确保它是长的,而不是到处都是“长的”。

您是否按照我的建议清除了所有自动生成的内容。您是否更新了所有的类Async、Service和ServiceImpl。