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>。如果您需要指向不属于 web 应用程序的图像,则只需使用纯 HTML <img>。
<h:graphicImage value>
<h:graphicImage>
<img>
<img src="/#{detalle.path}" />