Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有以下问题:
我有 RequestBuilder,它像这样调用 http 代理 servlet 。
现在我尝试测试它。
我设置了 gwt maven 插件以使用 htmlunit。但是当我启动我的测试 requestbuilder 请求返回状态代码 404 (这显然意味着“未找到”)。
我对此有两个想法:
1) Servlet 不启动 2) Servlet 启动,但映射不起作用
同时相同的测试在 IDE 中工作。
我不知道如何诊断这个问题以及如何处理整个这件事......
RequestBuilder 中的请求 url 可能是您的问题。它应该是这样的
RequestBuilder builder=new RequestBuilder(RequestBuilder.GET, GWT.getHostPageBaseURL()+"filename");
使用GWT.getHostPageBaseURL(),而不是其他手动的东西。