I'm quite new to Oracle's ADF and wonder what is the difference between ADF and Sun's reference implementation of JSF?

link|improve this question

feedback

3 Answers

up vote 5 down vote accepted

ADF is a complete framework. It consists of ADF Faces and ADF Business Components making it a complete framework, model to controller to view. Using ADF, along with JDeveloper, developers can develop applications without ever having to touch any java code (theoretically). I still find myself using some java, however I try to limit it to as little as possible since this a migration project where incoming non-java developers will be working. (And yes, they will have to learn java eventually).

link|improve this answer
feedback

As a user of ADF Faces on several enterprise projects, I have a slight disagreement with the approved answer-- ADF Faces can be used as your JSF implementation or as a component library. If used as your JSF implementation there are differences from the JSF spec such as a longer lifecycle (ADFFaces adds two steps to the original JSF lifecycle) and an additional scope for storing variables longer than request but shorter than session (i.e. in "process scope").

If you end up using ADF Faces as your JSF implementation, you need to be aware that you are doing things the Oracle JSF implementation way (so you often can only find answers for what you are trying to do in the Oracle documentation, which can be lacking).

link|improve this answer
+1 To add on top of that - ADF-Faces seems to be JSF 1.2 implementation (not 2.0). Also ADF-Faces is based on Apache Trinidad components as that code was originally coded by Oracle and later donated to Apache. – AppleGrew Jan 6 '11 at 6:45
Are we saying that standard JSF is better documented than ADF or is it just that we are now dependent on Google to find an answer than actually read the official documentation? – RHT Dec 16 '11 at 21:52
feedback

Here are some of the things that are either not implemented properly or they are completely missing in the vanilla JSF.

  1. Tooling

  2. Declarative binding with the Business layer, all the way to the database or webservices or Content Services.

  3. Reusable Taskflows that allow you to easily share the fragments of user interface between pages rather than develop each page from scratch.

  4. Internationalization

  5. Ability to deliver customizable and personalizable pages using webcenter extensions

  6. Ability to embed advanced data visualizations from Oracle Business Intelligence or other sources.

ADF does all of the above and more.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.