次の Jetty 構成があります。
<webAppConfig>
<defaultsDescriptor>${project.basedir}/configuration/webdefaults.xml</defaultsDescriptor>
<contextPath>/app</contextPath>
<baseResource implementation="org.eclipse.jetty.util.resource.ResourceCollection">
<resourcesAsCSV>${project.basedir}/src/main/webapp,/external/dir,/another/dir</resourcesAsCSV>
</baseResource>
</webAppConfig>
現在、src/main/webapp と /external/dir の両方に static というディレクトリがあり、両方のリソースに URL /app/static からアクセスできます。しかし、/another/dir には special-static という名前のディレクトリがあり、何らかの理由でその中のリソースにアクセスできません (または、少なくとも URL /app/special-static を使用していません)。
私が間違っているかもしれないことは何ですか?