Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Glassfish docroot フォルダーに画像があり、それを表示していますが、相対パスが必要です。
私のコードは次のとおりです
<h:graphicImage value="/#{detalle.path} />
そして、次の結果が生成されます: 'localhost:8080/Gestion/image.png'
「localhost:8080/image.png」のようなものが必要です
注: パスはイメージ名です。
どうすれば入手できますか? 前もって感謝します
は、<h:graphicImage value>暗黙的に URL の先頭にコンテキスト パスを追加します。あなたが望むことは では不可能<h:graphicImage>です。<img>Web アプリケーションの一部ではない画像を指す必要がある場合は、代わりにプレーンな HTML を使用してください。
<h:graphicImage value>
<h:graphicImage>
<img>
<img src="/#{detalle.path}" />