我试图将一个GWT项目运行到DevMode中,在运行谷歌编译并对devMode进行联系后我得到了一个url,所以当遇到mozila时,我得到503错误。 我的控制台显示以下内容:
[ERROR] 503 - GET /travelApp?gwt.codesvr=127.0.0.1:49822 (127.0.0.1) 1296 bytes
Request headers
Host: localhost:8888
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-US,en;q=0.5
Accept-Encoding: gzip, deflate
Connection: keep-alive
Response headers
Cache-Control: must-revalidate,no-cache,no-store
Content-Type: text/html;charset=ISO-8859-1
Content-Length: 1296
我不明白这个问题,你能帮帮我吗?
答案 0 :(得分:1)
您看到的是来自网络服务器的回复。错误代码为503 - 服务不可用(https://en.wikipedia.org/wiki/List_of_HTTP_status_codes)。
最相似的是,您的应用程序无法启动。
你有任何日志吗?可能有任何有用的堆栈跟踪。
你使用内置Jetty吗?我发现,有时很难从中获取日志条目。也许你可以尝试将应用程序部署到tomcat以获得更有用的错误日志。