我无法让 RequestFactory 与 GWTTestCase 一起工作。我看到以下内容:
[WARN] 404 - POST /com.traviswebb.MyApp.JUnit/gwtRequest (127.0.0.1) 1439 bytes
在我的 MyAppJUnit.gwt.xml 文件中,我有这个:
<servlet path='/gwtRequest' class='com.google.web.bindery.requestfactory.server.RequestFactoryServlet'/>
当我在浏览器中运行它时,它只是请求/myApp/gwtRequest
,因为我已经rename-to
在模块文件中设置了。我尝试在 JUnit 模块中设置相同的内容,但没有效果。绝望中我什至尝试添加
<url-pattern>/com.traviswebb.MyApp.JUnit/gwtRequest</url-pattern>
到我的 web.xml,但这也不起作用。想法?