I want to use the JSF 2.3 on my application, but WildFly uses the 2 JAR variant for 2.2.
Oracle said here https://javaserverfaces.java.net/2.3/download.html that won't release a 2.3 2 JAR variant.
I want to use the JSF 2.3 on my application, but WildFly uses the 2 JAR variant for 2.2.
Oracle said here https://javaserverfaces.java.net/2.3/download.html that won't release a 2.3 2 JAR variant.
Here's the manual procedure:
Extract javax.faces.jar
with a ZIP tool. You'll get 3 folders com
, javax
and META-INF
.
Pack com
and META-INF
folders into jsf-impl.jar
with a ZIP tool.
Then, delete all files/subfolders in META-INF
except of MANIFEST.MF
.
Pack javax
and META-INF
folders into jsf-api.jar
with a ZIP tool.
Continue here with those JARs: Upgrade JSF / Mojarra in JBoss AS / EAP / WildFly.
For the interested, JBoss AS and WildFly has internally a modular separation of Java EE based API and impl files. The separated JAR files jsf-api.jar
and jsf-impl.jar
are still needed. The reason is not really technical, but just an extra service to force developers programming against the right libraries. Only the API modules are exposed during compile time (usually, via the IDE-integrated plugin which adds them to "build path"). This should avoid starters accidentally finding, importing and using implementation classes such as those in com.sun.faces.*
package.
Already since version 1.x, the JSF implementation Mojarra was composed of two JAR files: jsf-api.jar
and jsf-impl.jar
. The API JAR contained the javax.faces.*
classes and the implementation JAR contained the com.sun.faces.*
classes. Since the change of the build system conform Java EE Maven rules, both the API and implementation classes were merged into a single javax.faces.jar
file, see also issue 2028 (started with Mojarra 2.1.6 at Dec 2011). Since Mojarra 2.3, the separated JAR files are not built anymore.