【发布时间】:2011-06-16 14:24:38
【问题描述】:
使用 h:outputStylesheet 我可以在 HTML 头部部分中嵌入 CSS 资源,但是如何为 favicon 图像资源构建一个 <link> 来呈现 HTML,如下例所示:
HTML 输出:
<head>
...
<link rel="icon" type="image/png" href="favicon.png" />
...
</head>
图片资源位于<web>/resources/images。
如果我在 JSF 模板中使用直接 HTML 代码,例如 href="/resources/images/favicon.png",则找不到资源 - 导航到 /resources/images/favicon.png 会导致错误
/resources/images/favicon.png/index.jsf 没找到
(我已将 index.jsf 设置为 web.xml 中的索引页面,这可能会解释此路径)
【问题讨论】:
标签: jsf resources jsf-2 favicon