8 Replies Latest reply on Sep 25, 2012 6:13 AM by ilun

    RichFaces 4.3.0 M1 Skin Problems

    ilun

      Hello,

       

       

      I have a problem with richfaces, the skin does not apply in the application. I'm trying to implement it in a simple example.

       

       

      example.jpg

       

      I created the maven project in eclips with richfaces-archetype-simpleapp archetype and I add the following lines to web.xml.

       

       

                <context-param>
                    <param-name>org.richfaces.skin</param-name>
                    <param-value>classic</param-value>
                  </context-param>
      
      

       

      I copy the web.xml if I have something wrong with the configuration and code of xhtml.

       

      web.xml

       


      <?xml version="1.0" encoding="UTF-8"?>
      
      <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
      
      
          <display-name>Sphealt</display-name>
          
          <context-param>
              <param-name>javax.faces.PROJECT_STAGE</param-name>
              <param-value>Development</param-value>
          </context-param>
      
      
          <context-param>
              <param-name>javax.faces.SKIP_COMMENTS</param-name>
              <param-value>true</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>*.jsf</url-pattern>
          </servlet-mapping>
          <servlet-mapping>
              <servlet-name>Faces Servlet</servlet-name>
              <url-pattern>/faces/*</url-pattern>
          </servlet-mapping>
          
          <!-- Resource Servlet - serves static resources and resources for specific components -->
          
          <!-- RICH FACES -->
          
          <servlet>
              <servlet-name>Resource Servlet</servlet-name>
              <servlet-class>org.richfaces.webapp.ResourceServlet</servlet-class>
              <load-on-startup>1</load-on-startup>
          </servlet>
          <servlet-mapping>
              <servlet-name>Resource Servlet</servlet-name>
              <url-pattern>/org.richfaces.resources/*</url-pattern>
          </servlet-mapping>
          
          <!-- Resource Mapping - resources will be served compressed and packed in production -->
          <context-param>
              <param-name>org.richfaces.resourceMapping.enabled</param-name>
              <param-value>true</param-value>
          </context-param>
      
      
                <context-param>
                    <param-name>org.richfaces.skin</param-name>
                    <param-value>classic</param-value>
                  </context-param>
      
      
          <session-config>
              <session-timeout>30</session-timeout>
          </session-config>
      
      
          <welcome-file-list>
              <welcome-file>faces/index.xhtml</welcome-file>
          </welcome-file-list>
      
      
          <login-config>
              <auth-method>BASIC</auth-method>
          </login-config>
      
      
      
      </web-app>
      

      
      

       

       

      index.xhtml

       


         

       

       

       

      And above all, thanks!