JSF とグラスフィッシュ 4.0 を使用しています。プロジェクトの resources フォルダーの下の images ディレクトリに配置されているすべての画像に直接アクセスできることはわかっています。Glass Fish フォルダーにある画像を表示する方法を知りたいと思っていました。glass fish ドメインの下に画像フォルダーを作成し、この画像を JSF ページに表示したいと考えています。誰かが私にそれを行う方法を教えてもらえますか? 私はこれが初めてなので、助けが必要です。
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE glassfish-web-app PUBLIC "-//GlassFish.org//DTD GlassFish Application Server 3.1 Servlet 3.0//EN" "http://glassfish.org/dtds/glassfish-web-app_3_0-1.dtd">
<glassfish-web-app error-url="">
<property name="alternatedocroot_1" value="from=/images/* dir=/test/webapp" />
<class-loader delegate="true"/>
<jsp-config>
<property name="keepgenerated" value="true">
<description>
Keep a copy of the generated servlet class' java code.
</description>
</property>
</jsp-config>
</glassfish-web-app>
JSF ページ:
<header>
<h:graphicImage id="banner" style="width:700px;height: 52px;"
value="/images/header.jpg" />
</header>