0

我正在尝试构建一个简单的 JSF 应用程序,但是当我使用下面的代码在 template/basic.xhtml 中添加 css 时,应用程序服务器(tomcat 7 和 glassfish 4)解析为 RES_NOT_FOUND

<h:head>
    <title><ui:insert name="title">Enrollment System</ui:insert></title>
    <h:outputStylesheet library="common" name="css/reset.css" />
    <h:outputStylesheet library="common" name="css/common.css" />
</h:head>

index.xhtml 仅包含

<!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:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core">
<ui:composition template="/templates/basic.xhtml">
    <ui:define name="content">
        <h1>Welcome, #{loginSession.privilege}</h1>
    </ui:define>
</ui:composition>
</html>

我已经阅读了另外几篇文章以及Mkyong 的 JSF 教程,我应该将 css 放在某个特定的目录中,但仍然无法使其工作。

以下是我的文件所在的位置:

enrollment/index.xhtml
enrollment/WEB-INF/templates/basic.xhtml
enrollment/resources/common/css/reset.css
enrollment/resources/common/css/common.css

是否缺少其他任何配置以使其正常工作?

这是我在生成并返回空 ResourceInfo 的堆栈中找到的内容。

Daemon Thread [http-bio-80-exec-3] (Suspended)  
owns: SocketWrapper<E>  (id=62) 
ResourceManager.findResource(String, String, String, boolean, FacesContext) line: 190   
ResourceManager.findResource(String, String, String, FacesContext) line: 180    
ResourceHandlerImpl.createResource(String, String, String) line: 201    
ResourceHandlerImpl.createResource(String, String) line: 181    
StylesheetRenderer.encodeEnd(FacesContext, UIComponent) line: 97

getFromCache 将使用提供的四个参数在 HashMap 中搜索。

ResourceInfo info = getFromCache(resourceName, libraryName, localePrefix, contracts);

我检查了 HashMap 中的所有值,只有两个资源,即

"/"
"/WEB-INF/templates/basic.xhtml"

这可能是因为资源从未添加到哈希图中的原因

4

1 回答 1

0

我意外地解决了这个问题。

修复是在创建项目时不要选择“生成 web.xml 部署描述符”。

于 2013-07-16T11:37:13.787 回答