Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
尝试使用以下标记在 JSF2 中包含样式表
<h:outputStylesheet name="css/test.css" />
但是它没有选择,样式表的目录结构如下
WebContent-->css-->test.css
谁能帮我解决这个问题?
( <h:outputStylesheet>and <h:outputScript>and <h:graphicImage>) 引用特殊/resources子文件夹中的 JSF 资源。只需创建该子文件夹并将您css/test.css的放入其中。
<h:outputStylesheet>
<h:outputScript>
<h:graphicImage>
/resources
css/test.css
WebContent |-- resources | `-- css | `-- test.css :
然后你可以继续使用