What's the JSF implementation version that JBoss 7.1.1.Final has?

谁都会走 提交于 2019-12-30 05:06:06

问题


What's the JSF implementation version that JBoss 7.1.1.Final has? and how can I know, and also how can I upgrade it.

I just know that it's mojarra implementation, but nothing more.

Thanks in advance.


回答1:


The JBoss AS 7.1.1.Final is shipped with JSF 2.1.7. See the release notes here

You can update the JSF modules like this:

The jboss-jsf-api jar is located at

${jboss.home.dir}/modules/javax/faces/api/main

Download the latest 2.0.3.Final from here and place it in the above folder and edit the module.xml to this:

<resource-root path="jboss-jsf-api_2.1_spec-2.0.3.Final.jar"/>

The jsf-impl jar is located at

${jboss.home.dir}/modules/com/sun/jsf-impl/main

Download jsf-impl 2.1.10 from here and place it in the above folder and edit the module.xml to this:

<resource-root path="jsf-impl-2.1.10-jbossorg-1.jar"/>

Now we have the JSF libraries updated to the versions available in 7.1.3.Final-SNAPSHOT.



来源:https://stackoverflow.com/questions/11493884/whats-the-jsf-implementation-version-that-jboss-7-1-1-final-has

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!