Steven De Groote
Steven De Groote

Reputation: 2233

How to run a JSF 2.0 application on JavaEE5?

For one reason or another, we need to run our JSF2 application on a JavaEE5 server (weblogic10).

Before trying to compile my application with Java5 instead of Java6, does anyone know if this will actually be possible?

Upvotes: 2

Views: 1659

Answers (1)

BalusC
BalusC

Reputation: 1108557

JSF 2.0 is compatible with Servlet 2.5 (Java EE 5) containers. See also the Mojarra 2.0 release notes:

Webtier Specification Requirements

This release of JSF requires:

Only JSF 2.1 requires Servlet 3.0 (Java EE 6) containers. See also the Mojarra 2.1 release notes.

Upvotes: 3

Related Questions