http 503 error gwt jetty server SERVICE_UNAVAILABLE

前端 未结 3 825
说谎
说谎 2021-01-14 16:04

i get 503 error from eclipse integrated jetty server while running project in a web browser. i get this error since i changed the gae application-id of the project.

相关标签:
3条回答
  • 2021-01-14 16:29

    Solution in my situation - just kill all javaw.exe *32 process in task manager.

    0 讨论(0)
  • 2021-01-14 16:32

    I'm using maven, but had the same problem. With maven we don't have the SDK version set in project properties, instead we have this plugin:

    <plugin>
        <groupId>com.google.appengine</groupId>
        <artifactId>appengine-maven-plugin</artifactId>
        <version>1.8.3</version>
    

    To solve the exception: Window/Show View/Other... > Servers/Server and then right click on the used AppEngine server then click Clean....

    Note: this will wipe your local dev datastore, so make a backup of the file if you want to keep your data:

    .../workspace/.metadata/.plugins/org.eclipse.wst.server.core/tmp${SERVER_NUM}/${DEPLOYED_APP_NAME}/WEB-INF/appengine-generated/local_db.bin

    0 讨论(0)
  • 2021-01-14 16:33

    I faced this same problem. SystemServiceServlet seems to be needed only if you want to deploy the web admin servlet in jetty.

    In my case the issue was the GAE eclipse plugin was using GAE Java SDK 1.6 by default and the package com.google.api.server is no even there. I fixed it by setting the SDK manually to GAE SDK 1.7.

    Be careful when changing the SDK, I tried by changing the default SDK but still had this problem until I selected "Use specific SDK" pointing to 1.7.

    0 讨论(0)
提交回复
热议问题