Skip to content
Marcelo Romulo Fernandes edited this page Dec 14, 2018 · 23 revisions

1. How to configure PrimeFaces Community Themes?

At your pom, add the dependency :

    <dependency>
        <groupId>org.primefaces.themes</groupId>
        <artifactId>all-themes</artifactId>
        <version>1.0.10</version>
    </dependency>

and enable the repository :

    <repositories>  
      <repository>  
        <id>primefaces-maven-repository</id>  
        <name>PrimeFaces Maven Repository</name>  
        <url>http://repository.primefaces.org</url>  
      </repository>
    </repositories>

Primefaces themes are not deployed to Maven Central anymore.

2. How to configure phase-listener?

Answer here.

3. Is it possible to use more than one joinfaces starters per application?

Yes, but you must use only one servlet container and one jsf implementation per application. For example, you can't mix Tomcat and Jetty in the same application. You can't mix Mojarra and MyFaces too.

Unfortynately, jsf component libraries are not fully compatible. That's why JoinFaces has so many starters.

4. How to add custom login screen?

Answer.

5. Why custom components are not rendered?

Answer.

6. Is it possible to use joinfaces without declaring joinfaces parent pom?

Answer.

7. Is it possible to change order of JsfCdiToSpringAutoConfiguration ?

Answer.

8. Custom ResourceHandlerWrapper does not work?

Answer.

9. Slow startup time

Answer.

10. JSF files location

Answer.

11. Improved JSF Bean testing using JoinFaces and SpringBoot

See JoinFaces Bean Test project by @larmic

12. How to cache resource files?

Answer.