Google App引擎上的生产部署问题

时间:2018-09-13 10:12:13

标签: google-app-engine google-cloud-endpoints

我正在使用Google App引擎和已部署的Web应用程序。 我尝试使用App Engine在本地部署代码,但工作正常 但是当我在生产服务器上部署时,它导致了错误。

Request : POST 20180909t164211-dot-spry-autumn-140509.appspot.com/_ah/spi/BackendService.getApiConfigs 

(View request) Status : 500 Internal Server Error, Updated Screen shots for error and web.xml configration.

Web.xml configration: 
     <servlet>
            <servlet-name>SystemServiceServlet</servlet-name>
            <servlet-class>com.google.api.server.spi.SystemServiceServlet</servlet-class>
            <init-param>
                <param-name>services</param-name>
                <param-value />
            </init-param>
        </servlet>
        <servlet-mapping>
            <servlet-name>SystemServiceServlet</servlet-name>
            <url-pattern>/_ah/spi/*</url-pattern>
        </servlet-mapping>

生产错误:

Image shows exception occurs on production server.

请为我建议一些解决方案。

1 个答案:

答案 0 :(得分:1)

端点v1已关闭。您必须将应用程序迁移到Endpoints v2。参见migration instructions