WebContent - リソース - css - style.css WEB-INF - index.html
public synchronized Restlet createInboundRoot() {
Router router = new Router(getContext());
router.attach("/", IndexResource.class);
return router;
}
IndexResource は HTML 表現 (index.html) を実行します。
index.html で css ファイルを指定しました。問題は、それが見つからないことです。
<link href="/resources/css/style.css" rel="stylesheet" type="text/css">
/resources/css/style.css
実際のファイルパスではなく、restletを経由していると思います。サーブレット (restlet) として実行されているリソース フォルダーを停止するにはどうすればよいですか?