web-dev-qa-db-ja.com

JSF / Facelets:<h:outputStylesheet>タグを使用してCSSファイルが認識されない

JSF/Faceletsを使用してプロジェクトに取り組んでいます。 View XHTMLでCSSを変更したいのですが、WebアプリケーションをTomcatサーバーにデプロイしても何も起こりません。私は多くのトリックを試しましたが、同じ結果が得られました。

とにかく、これが私の「styles.css」です。

body { width: 750px; }

#header 
{
width:              100%;
font-size:          36px;
font-weight:        bold;
line-height:        48px;
background-color:   navy;
color:              white;
}

#footer
{
width:              100%;
font-weight:        bold;
background-color:   navy;
color:              white;
}

そして、これは「Header.html」と「Footer.html」を含むメインテンプレート「Template.html」です。ここで、タグを使用して「styles.css」を配置します。

<!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:f="http://Java.Sun.com/jsf/core"
xmlns:h="http://Java.Sun.com/jsf/html"
xmlns:ui="http://Java.Sun.com/jsf/facelets">
<head>
<h:outputStylesheet name="css/styles.css" />
    <!-- i've also tried this one, using the "library" attribute -->
    <!--
     <h:outputStylesheet library="css" name="styles.css" />
    -->
</head>
<h:body>
<h:panelGroup id="page" layout="block">

    <h:panelGroup id="header" layout="block">
        <ui:insert name="header">
            <ui:include src="Header.html" />
        </ui:insert>
    </h:panelGroup>

    <h:panelGroup id="container" layout="block">
        <h:panelGroup id="content" layout="block">
            <ui:insert name="content">CONTENT</ui:insert>
        </h:panelGroup>
    </h:panelGroup>

    <h:panelGroup id="footer" layout="block">
        <ui:insert name="footer">
            <ui:include src="Footer.html" />
        </ui:insert>
    </h:panelGroup>

</h:panelGroup>

</h:body>
</html>

Anfは最後に、テンプレート「Template.html」を含む私の「Main.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">
 <ui:composition xmlns="http://www.w3.org/1999/xhtml"
xmlns:f="http://Java.Sun.com/jsf/core"
xmlns:h="http://Java.Sun.com/jsf/html"
xmlns:ui="http://Java.Sun.com/jsf/facelets"
xmlns:a4j="http://richfaces.org/a4j"
xmlns:rich="http://richfaces.org/rich" template="Template.html">
<h:body>
    <ui:define name="content">
        <h:form>
            <h:inputText title="inputText"></h:inputText>
            <h:commandButton value="OK"></h:commandButton>
        </h:form>
    </ui:define>
</h:body>
 </ui:composition>

前もって感謝します :)

18
ayoubuntu

<h:outputStylesheet>(および<h:outputScript>)には<h:head>が必要ですが、<head>があります。適宜修正してください。

<h:head>
    <h:outputStylesheet name="css/styles.css" />
</h:head>

さらに、css/styles.cssファイルがパブリックWebコンテンツの/resourcesサブフォルダーに配置されていることを確認する必要があります。

WebContent
 |-- resources
 |    `-- css
 |         `-- styles.css
 :

library属性を使用する試みについては、これに注意してください。library="css"の使用は、このコンテキストでは完全には正しくありません。参照: JSFリソースライブラリとは何ですか、またどのように使用する必要がありますか?

51
BalusC