GAE上java app的数据导入导出

以前是按python的app方式,通过配置app.yaml文件将remote_api添加到GAE应用中,进而实现GAE数据的导入导出。GAE文档中也是这么写的。

昨晚从网上看到java app通过配置web.xml也可以轻松添加remote_api,这一点之前在GAE文档中没找到详细的描述。

在web.xml中添加

  <!--Addthis to your web.xml to enable remote API on Java.-->
  <servlet>
    <servlet-name>remoteapi</servlet-name>
    <servlet-class>com.google.apphosting.utils.remoteapi.RemoteApiServlet</servlet-class>
  </servlet>
  <servlet-mapping>
    <servlet-name>remoteapi</servlet-name>
    <url-pattern>/remote_api</url-pattern>
  </servlet-mapping>
  <security-constraint>
    <web-resource-collection>
      <web-resource-name>remoteapi</web-resource-name>
      <url-pattern>/remote_api</url-pattern>
    </web-resource-collection>
    <auth-constraint>
      <role-name>admin</role-name>
    </auth-constraint>
  </security-constraint>
 



上传更新java app应用后即可使用bulkloader.py来调用remote_api接口进行GAE数据的导入和导出了。

原文 http://stackoverflow.com/questions/2364310/gae-j-datastore-backup

你可能感兴趣的:(java,Web,servlet,python,GAE)