我的应用程序 JAX-RS/Guice 映射覆盖了 GAE SDK 管理映射。所以我需要通过 Guice 服务模块明确地“服务”它
serve("_ah/admin/datastore*").with(DatastoreViewerServlet.class); // does not work
serve("/appstats/*").with(AppstatsServlet.class); // works!
DatastoreViewerServlet
我面临的问题是我在 GAE SDK 类路径中找不到这个。我是 GAE SDK 1.7.5 版
试过这个:
com.google.apphosting.utils.servlet.DatastoreViewerServlet
但它不在那里。