2

まず、これを読んでくれてありがとう。

<application>${APPLICATION}</application>
<version>${VERSION}</version>

<system-properties>
    <property
        name="java.util.logging.config.file"
        value="WEB-INF/classes/logging.properties"
    />
    <property name="appengine.datastore.disableChunkSizeWarning" value="false"></property>
</system-properties>

<static-files>
    <include path="/images/**" expiration="40d 0h 0m 0s" />
</static-files>

<precompilation-enabled>true</precompilation-enabled>

<warmup-requests-enabled>true</warmup-requests-enabled>

<threadsafe>true</threadsafe>

<inbound-services>
    <service>channel_presence</service>
</inbound-services>

上記は私のappengine-web.xmlです。静的ファイル設定を構成した後、すべてのページリクエストが「エラー404」を返しました

http://dev.magic-note.appspot.com/

これはサイトのリンクです。

誰か提案がありますか?なんでも??本当に感謝します..みんなありがとう..

4

2 に答える 2

0

拡張機能で試してください:

例えば:

 <static-files>
        <include path="/**.gif" expiration="1d" />
        <include path="/**.png" expiration="1d" />
        <include path="/**.jpg" expiration="1d"  />
        <include path="/**.ico" expiration="1d"  /> 
 </static-files>
于 2013-02-14T12:06:29.320 に答える
0

以下に示すように、すべての静的ファイルを src\main\webapp フォルダーにコピーし、appengine-web.xml に静的ファイル パターンを含めます。

<appengine-web-app xmlns="http://appengine.google.com/ns/1.0">
  <application>YOUR-PROJECT-ID</application>
  <version>1</version>
  <threadsafe>true</threadsafe>
  <static-files>
    <include path="/**.html" />
    <include path="/**.js" />
    <include path="/**.css" />
  </static-files>
</appengine-web-app>
于 2016-08-05T04:04:13.383 に答える