I'm trying to identify the current version of Mojarra my WebLogic 12c is using. How can I find out that?
WebLogic Server 12c (12.2. 1), WebLogic Server 11g (10.3.
One way would be to programmatically extract the implementation detail from the Package
information of an arbitrary JSF class, such as FacesContext
.
Package p = FacesContext.class.getPackage();
System.out.println(p.getImplementationTitle() + " " + p.getImplementationVersion());
Another way would be to explore the JSF module in /wlserver/modules
folder of WebLogic installation. In my 12c installation, the filename says glassfish.jsf_1.0.0.0_2-1-20.jar
, which in turn identifies Mojarra 2.1.20.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With