Quarkus PrimeFaces
A Quarkus extension that lets you utilize PrimeFaces and PrimeFaces Extensions make JSF development so much easier!
Installation
If you want to use this extension, you need to add the io.quarkiverse.primefaces:quarkus-primefaces
extension first to your build file.
For instance, with Maven, add the following dependency to your POM file:
<dependency>
<groupId>io.quarkiverse.primefaces</groupId>
<artifactId>quarkus-primefaces</artifactId>
<version>3.14.7</version>
</dependency>
<dependency>
<groupId>io.quarkiverse.primefaces</groupId>
<artifactId>quarkus-primefaces-extensions</artifactId>
<version>3.14.7</version>
</dependency>
Limitations
When creating a GraalVM Native image you may need to change some of your code to be native friendly and some features may not be available to use in Native mode.
FeedReader not supported. Rome library uses JDOM XML parsing and we did not spend the time to investigate for a lightly used component. |
EL expressions which use reflection may run into issues with things like List size() or Enum name() as they are not bean compliant method names. You might need to change your EL expression or add helper code to achieve what you want. |