我正在使用JSF 2.2。我无法在.css
页面中添加.xhtml
。
.xhtml
<h:head>
<title>Login Page</title>
</h:head>
<h:body>
<h:outputStylesheet library="resources/css" name="style.css" id="cascade1"/>
此外,我尝试将其声明为具有相同结果的<h:head>
。
FireBug正在查看此资源,但它显示消息:
重新加载页面以获取... / javax.faces.resource / style.css.xhtml的源代码; ...
答案 0 :(得分:3)
无需使用library
属性:
<h:outputStylesheet name="css/style.css" />
这样,JSF servlet期望style.css
文件位于/resources/css
路径中。