The current version of JSF is 2. I think JSF is a layer on top of servlet. So between JSF and the application server, the common ground is the servlet version used. According to this link "http://javaserverfaces.java.net/presentations/20090520-jsf2-datasheet.pdf", JSF 2.0 is compatible with JavaEE 5 application servers, or any server implementing Servlet 2.5. For weblogic 10.3, it has a list of supported standards. From the link "http://docs.oracle.com/cd/E12840_01/wls/docs103/notes/new.html", it supports Java EE version 5.0 and Java EE servlet version 2.5, 2.4, 2.3, and 2.2. So here the common ground is servlet version 2.5, and it should be OK to use JSF 2 in weblogic 10.3.
The following information from wikipedia http://en.wikipedia.org/wiki/Oracle_WebLogic_Server is also helpful.
The table below lists major standards supported by WebLogic Server product version.
Standard | WLS 7.0 | WLS 8.1 | WLS 9.0 | WLS 10.0 | WLS 10.3 | WLS 12c |
---|---|---|---|---|---|---|
Java | 1.3 | 1.4 | 5 | 5 | 6 (7 in 10.3.6+) | 7 |
Java EE | 1.3 | 1.3 | 1.4 | 5 | 5 | 6 |
Servlet | 1.2 | 2.3 | 2.4 | 2.5 | 2.5 | 3.0 |
JSP | 1.2 | 1.2 | 2.0 | 2.1 | 2.1 | 2.2 |
EJB | 2.0 | 2.0 | 2.1 | 3.0 | 3.0 | 3.1 |
JDBC | 2.0 | 2.0 | 3.0 | 3.0 | 3.0 | 4.0 |
No comments:
Post a Comment