Book Image

Oracle ADF 11gR2 Development Beginner's Guide

By : Vinod Thatheri Krishnan
Book Image

Oracle ADF 11gR2 Development Beginner's Guide

By: Vinod Thatheri Krishnan

Overview of this book

Oracle ADF is an end-to-end framework which makes application development simple by providing infrastructure services as well as visual and declarative development right away. "Oracle ADF 11gR2 Development Beginner's Guide" guides any user with programming skills to be able to quickly learn the options and ways to develop rich Internet applications using ADF 11gR2. Containing all the skills that a new user has to use to build an application in ADF 11gR2, this book is designed in such a way so that it enhances the practical feel of developing applications in ADF 11gR2. Starting with the installation and configuration of Oracle ADF 11g RD we will then work through topics such as working with the Model Layer and Model Data followed by displaying and binding the data. Later we will look at Navigations and Flows within applications as well as their layout, look, and feel. "Oracle ADF 11g R2 Development Beginner's Guide" will conclude with us looking at the security and deployment of the applications which have been created.
Table of Contents (19 chapters)
Oracle ADF 11gR2 Development Beginner's Guide
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Pop Quiz Answers
Index

Time for action – creating an application module


Now we will see how to create an application module using the following steps:

  1. With JDeveloper open, locate the Model project and look for the com.empdirectory.model.am folder. Right-click on this directory and select the New Application Module option.

  2. The package name and the name of the application module can be kept as it is.

  3. In the Data Model section, you can select the view object and shuttle to the other side. We are not doing this also. Click on the Next button.

  4. In the next screen, we will move any available application module to the current one as a child application module. In this case, the root application module will be maintaining the transaction for the child application module—skip this section also.

  5. The next screen can be used to create a Java class for the application module, which we do not need right now.

  6. At the end is the summary page, and clicking on the Finish button will create the application module for you.

What just happened...