Reputation: 2233
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
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