How to browse local Java App Engine datastore?

后端 未结 7 1857
离开以前
离开以前 2020-12-07 08:37

It seems there is no equivalent of Python App Engine\'s _ah/admin for the Java implementation of Google App Engine.

Is there a manual way I can browse the datastore?

7条回答
  •  萌比男神i
    2020-12-07 09:18

    In the newest versions of the SDK (1.7.6+) the admin part of the dev server comes with it changed its location

    Analyzing the server output logs we can see that it is accessible at:

    http://localhost:8000

    And the Datastore viewer:

    http://localhost:8000/datastore

    Looks pretty neat - according to google's new design guidlines.

提交回复
热议问题