JSF没有读取资源文件夹

时间:2012-11-07 14:17:37

标签: jsf

我在让JSF读取包含我的样式表的资源文件夹时遇到问题。我的css库文件夹位于/webroot/resources/css/style.css

我之前使用过outputstylesheet标签没有任何问题,但我不知道我在这里缺少什么。

<html xmlns="http://www.w3.org/1999/xhtml"
  xmlns:h="http://java.sun.com/jsf/html">
<h:head>
    <h:outputStylesheet library="css" name="style.css"/>
    <title>Home</title>  
</h:head>

有什么想法吗?


更新:这是web.xml的一部分:

<context-param>
    <param-name>javax.faces.DEVELOPMENT</param-name>
    <param-value>Development</param-value>
</context-param>
<servlet>
    <servlet-name>Faces Servlet</servlet-name>
    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>/faces/*</url-pattern>
</servlet-mapping>
<session-config>
    <session-timeout>
        30
    </session-timeout>
</session-config>
<welcome-file-list>
    <welcome-file>faces/index.xhtml</welcome-file>
</welcome-file-list>

0 个答案:

没有答案