【发布时间】:2013-12-18 14:37:05
【问题描述】:
以下 dispatch.xml 不适用于我们的 appengine 应用 (java):
<?xml version="1.0" encoding="UTF-8"?>
<dispatch-entries>
<dispatch>
<url>*/favicon.ico</url>
<module>default</module>
</dispatch>
<dispatch>
<url>*/*</url>
<module>x-frontend</module>
</dispatch>
</dispatch-entries>
两个模块都已上传,但 x-frontend 模块没有任何内容。
代码来源于https://github.com/GoogleCloudPlatform/appengine-modules-sample-java
我将 dispatch.xml 放在 appengine-modules-sample-java/root/src/main/webapp/WEB-INF 下。 root 是我添加的默认模块。
【问题讨论】: