ご返答ありがとうございます。
/css/**と指定しましたが、やはりだめでした。
下記のような検証を行いました。
まずルートディレクトリにindex.htmlを作成しました。
最初に<static-files> を指定せずにindex.htmlを開いた所、問題なくCSSを読み込み画面が表示されました。
次に、appengine-web.xmlに<static-files> タグを指定して(※3)index.htmlを表示した所、404エラーが
発生しました。
<static-files> タグを追加するだけで404になってアクセスできなくなるようです。
JSPとサーブレットはアクセス出来ました。
static-filesタグに<exclude path="/index.html" />を追加して試してみましたが、これもダメでした。
すいませんが原因わかりますでしょうか?
よろしくお願いたします。
---- ディレクトリ構成 -----
war ┏ /css ━ text.css
┗ index.html
--------------------------------
--- index.html -----
<html>
<head>
<link type="text/css" rel="stylesheet" href="/css/test.css" />
</head>
<body>
HelloWorld!!
</body>
</html>
---------------------
----- appengine-web.xml ------------
<?xml version="1.0" encoding="utf-8"?>
<appengine-web-app xmlns="
http://appengine.google.com/ns/1.0">
<application>xxxxxxx</application>
<version>1</version>
<static-files>
<include path="/css/**" />
</static-files>
<system-properties>
<property name="java.util.logging.config.file" value="WEB-INF/
logging.properties"/>
</system-properties>
</appengine-web-app>
--------------------------------------------