Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to debug HTTP Error 503 - Jetty

Tags:

java

gwt

jetty

My gwt application is throwing:

HTTP ERROR: 503

SERVICE_UNAVAILABLE
RequestURI=/App.html

When accessed. How do I debug more details on the this Error 503, where I know there must be some problems with the configuration, however where can I find the error logs when running with $mvn gwt:run which fires up a embedded jetty.

like image 355
quarks Avatar asked Nov 12 '22 02:11

quarks


1 Answers

Here's what I did:

$mvn verify -DskipTests=true
$mvn clean package
$mvn gwt:run

Then it can now fetch the gwt html file.

like image 93
quarks Avatar answered Nov 14 '22 21:11

quarks