2

web.xmlでblueSkyの代わりにmyskinを使用すると、ロードされていない2つのcssファイル(skinning.cssとpacked.css)があり、ログに次のように表示されます。

 1. WARNING JSF1064: Unable to find or serve resource,
    org.richfaces.staticResource/4.2.0.Final/Packed/mysking/skinning.css.
 2. WARNING JSF1064: Unable to find or serve resource,
    org.richfaces.staticResource/4.2.0.Final/Packed/mysking/packed/packed.css.

誰かが私が上記の問題を解決するのを手伝ってくれる?

4

1 に答える 1

1

これらのファイルは「手動で」作成する必要があります。

これについて最近ブログ記事を書いたので、チェックしてみてください。

編集:あなたの場合、これを pom.xml に追加する必要があります

<plugin>
     <groupId>org.richfaces.cdk</groupId>
     <artifactId>maven-richfaces-resources-plugin</artifactId>
     <version>4.2.0.Final</version>
     <configuration>
          <skins>
               <skin>mysking</skin>
          </skins>
          <excludedFiles>
               <exclude>^\Qorg.richfaces.renderkit.html.images.\E.*</exclude>
               <exclude>^\Qorg.richfaces.renderkit.html.iconimages.\E.*</exclude>
          </excludedFiles>
          <includedContentTypes>
               <include>text/css</include>
               <include>image/.+</include>
          </includedContentTypes>
          <fileNameMappings>
                <property>
                     <name>^.*showcase.*/([^/]+\.css)$</name>
                     <value>org.richfaces.showcase.css/$1</value>
                </property>
                <property>
                     <name>^.+/([^/]+\.(png|gif|jpg))$</name>
                     <value>org.richfaces.images/$1</value>
                </property>
                <property>
                     <name>^.+/([^/]+\.css)$</name>
                     <value>org.richfaces.css/$1</value>
                </property>
          </fileNameMappings>
     </configuration>
     <executions>
          <execution>
               <id>process-resources</id>
               <goals>
                    <goal>process</goal>
               </goals>
               <configuration>    
                    <staticResourceMappingFile>${project.build.outputDirectory}/META-INF/richfaces/packed-resource-mappings.properties</staticResourceMappingFile>

                    <resourcesOutputDir>${project.build.outputDirectory}/META-INF/resources/org.richfaces.staticResource/4.2.0.Final/Packed/</resourcesOutputDir>
                    <staticResourcePrefix>org.richfaces.staticResource/4.2.0.Final/Packed</staticResourcePrefix>

                    <pack>true</pack>                            
                    <compress>false</compress>

                    <excludedFiles>
                         <exclude>^javax.faces</exclude>
                         <exclude>^\Qorg.richfaces.renderkit.html.images.\E.*</exclude>
                         <exclude>^\Qorg.richfaces.renderkit.html.iconimages.\E.*</exclude>
                         <exclude>^jquery\.js$</exclude>
                    </excludedFiles>

               </configuration>
          </execution>
     </executions>
</plugin>
于 2013-01-08T10:02:04.353 に答える