Java Server Faces - 导入图像

时间:2012-03-08 13:56:53

标签: java jsf

我想将图像文件导入JSF页面。我使用这段代码:

<div id="greenBand" class="ui-state-default ui-corner-allh"
    style="position:relative; top:35px; left:0px;">
    <img xmlns="" class="sectionTitle" alt="Download Drivers" border="0"
        style="position:relative; top:-20px; left:9px;"
        src="resources/logo_datacenters.png" />
</div>

当我将JSF页面加载到Web浏览器中时,我在页面的位置收到此错误消息:

Warning: This page calls for XML namespace declared with prefix img but no
taglibrary exists for that namespace.

我错过了什么标签库?

1 个答案:

答案 0 :(得分:4)

你的img标签中xmlns=""的目的是什么?

删除它......

b.t.w您可以使用<h:graphicImage ...