Google App Engine 上的生产部署问题

Production deployment issue on Google App engine

我正在使用 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>

制作错误:

请给我一些解决方案。

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