How to create managed bean in adf
This chapter describes how to use JDeveloper to declaratively create ADF Faces applications..
Oracle ADF provides data controls that may be based on a number of sources. In this tutorial you create and use a data control based on a Java bean class.
You will use wizards to quickly create an application and a project, and a blank JSF page. To create a simple bean object you will generate a starter Java class, then use the source editor to add two String properties and getter and setter methods on the properties.
You then create a service bean and add a business method that returns a list of names and their email addresses.
Next you will generate a data control from the service bean. Then you design two simple databound pages by dragging objects from the Data Controls panel.
I have an application that needs to have multiple instances of a session bean.
The first page displays the names and email addresses in a table format. The second page allows the end user to enter part of a name in a field, then click a button to display a list of names that contains a match to the value entered.
When you test run the pages, the first page in the browser will look like this:
| This tutorial shows you how to create a simple datab
|