ADF11g-044:Favicon in ADF

来源:互联网 发布:阿里云华北1 编辑:程序博客网 时间:2024/04/28 08:42

效果预览



在document标签中的metaContainer facet中加入outputtext标签,并且设置值为

<link rel='SHORTCUT ICON' href='#{facesContext.externalContext.requestContextPath}/favicon.png'/>

如下:

<f:facet name="metaContainer">        <af:outputText value="&lt;link rel='SHORTCUT ICON' href='#{facesContext.externalContext.requestContextPath}/favicon.png'/>" id="ot3"                       escape="false"/>      </f:facet>


本实验基于ADF 11.1.1.7.0,不过在11g R2的版本中,Oracle对本功能做了改善,只需要修改document的smallIconSource属性即可。

0 0