我试图让 JSP 网页与 OpenFaces 一起运行,但是当我运行我的页面时,我得到的外观与 OpenFaces 演示页面不同。就好像 OpenFaces css 没有加载一样。除了将库添加到我的项目并使用如下示例代码之外,我还需要做些什么特别的事情:
索引.xhtml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:o="http://openfaces.org/">
<h:head>
</h:head>
<h:body>
<h:form>
<o:dataTable styleClass="dataTable" value="#{personController.personList}" var="person">
<o:column>
<f:facet name="header">Name</f:facet>
<h:outputText value="#{person.name}"/>
</o:column>
<o:column>
<f:facet name="header">Number</f:facet>
<h:outputText value="#{person.no}"/>
</o:column>
<o:column>
<f:facet name="header">Address</f:facet>
<h:outputText value="#{person.address}"/>
</o:column>
</o:dataTable>
</h:form>
</h:body>