gpt4 book ai didi

java - 在 Google App Engine 上安排备份

转载 作者:行者123 更新时间:2023-11-30 04:43:51 25 4
gpt4 key购买 nike

我正在尝试使用 GAE 的计划备份机制,但不断收到错误消息,表明 cron.xml 有语法错误。使用 Google 的示例会出现相同的错误消息。

我使用的是sdk 1.7.0

我。 cron.xml 文件

<?xml version="1.0" encoding="UTF-8"?>
<cronentries>
<cron>
<url>/_ah/datastore_admin/backup.create?name=BackupToCloud&kind=LogTitle&kind=EventLog&filesystem=gs&gs_bucket_name=whitsend</url>
<description>My Daily Backup</description>
<schedule>every 12 hours</schedule>
<target>ah-builtin-python-bundle</target>
</cron>
</cronentries>

二。 cron.xsd(默认提供的)

<?xml version="1.0" encoding="UTF-8"?>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="cronentries" type="cronentries-Type"/>

<xs:complexType name="cronentries-Type">
<xs:sequence>
<xs:element type="cron-Type" name="cron" maxOccurs="unbounded" minOccurs="0"/>
</xs:sequence>
</xs:complexType>

<xs:complexType name="cron-Type">
<xs:all>
<xs:element type="xs:string" name="url"/>
<xs:element type="xs:string" name="description" minOccurs="0"/>
<xs:element type="xs:string" name="schedule"/>
<xs:element type="xs:string" name="timezone" minOccurs="0"/>
<xs:element type="target-Type" name="target" minOccurs="0"/>
</xs:all>
</xs:complexType>

<xs:simpleType name="target-Type">
<xs:restriction base="xs:string">
<xs:pattern value="[a-z\d\-]{1,100}"/>
</xs:restriction>
</xs:simpleType>

</xs:schema>

三。错误信息

“对实体“kind”的引用必须以“;”结尾分隔符。”使用在线 xml validator 检查 xml 有效性时,我收到相同的错误消息。

==> 有人遇到过同样的问题吗?如果有,你是如何解决的?

最佳答案

尝试使用 & 转义 & 读取:将 url 元素中的 & 替换为 &

关于java - 在 Google App Engine 上安排备份,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11599418/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com