当我尝试将我的 [project]_build.xml 作为 ant 运行时,我的 GWT 项目不工作。
这是我的 web.xml 文件:
<servlet>
<servlet-name>gwtTest</servlet-name>
<servlet-class>es.gwt.finalTest.server.TestServiceImpl</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>gwtTest</servlet-name>
<url-pattern>test</url-pattern>
</servlet-mapping>
这是在 My Service.java 中找到的远程服务路径
@RemoteServiceRelativePath("test")
另外,当我删除它时:private GreetingServiceAsync messageService = GWT.create(GreetingService.class);
从我的 EntryPoint 错误不再发生,但我当然无法访问我的 servlet