JBoss 7.1.1.Final的JSF实现版本是什么?

问题描述:

JBoss 7.1.1.Final有哪些JSF实现版本?我怎么知道,以及如何升级它。

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.

我只知道它是mojarra实现,但仅此而已。

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

提前致谢。

JBoss AS 7.1.1.Final附带JSF 2.1.7 。请参阅发布说明此处

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

您可以更新JSF模块像这样:

You can update the JSF modules like this:

jboss-jsf-api jar位于

The jboss-jsf-api jar is located at

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

下载来自这里并将其放在上面的文件夹中并将module.xml编辑为:

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"/>

jsf-impl jar位于

The jsf-impl jar is located at

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

这里并将其放在上面的文件夹中并将module.xml编辑为:

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"/>

现在我们将JSF库更新为7.1.3.Final-SNAPSHOT中可用的版本。

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