153
Part 1: Creating a Fusion Web Application and Building the Business Service When you work in JDeveloper, you organize your work in projects within an application. JDeveloper provides several template applications that you can use when creating an application and projects. The template applications are pre-configured with a basic set of technologies that are needed for developing the various types of applications, and you create your working environment by selecting the template that best fits your needs. You can then configure it to add any other technologies you plan to use. In the first part of this tutorial you are going to create a new Fusion Web application and build reusable business components that will access the database. You'll be using the Oracle ADF Business Components technology to map Java objects to existing tables in your database. Step 1: Create a Fusion Web Application 1. Start JDeveloper by selecting Start > Programs > Oracle Fusion Middleware 11.1.2.0.0 > JDeveloper Studio 11.1.2.0.0 2. In the Select Role dialog, choose Studio Developer and click OK.

Adf From Oracle

Embed Size (px)

DESCRIPTION

adf

Citation preview

Page 1: Adf From Oracle

Part 1: Creating a Fusion Web Application and Building the Business Service

When you work in JDeveloper, you organize your work in projects within an application. JDeveloper provides several template applications that you can use when creating an application and projects. The template applications are pre-configured with a basic set of technologies that are needed for developing the various types of applications, and you create your working environment by selecting the template that best fits your needs. You can then configure it to add any other technologies you plan to use.

In the first part of this tutorial you are going to create a new Fusion Web application and build reusable business components that will access the database.You'll be using the Oracle ADF Business Components technology to map Java objects to existing tables in your database.

Step 1: Create a Fusion Web Application

1. Start JDeveloper by selecting Start > Programs > Oracle Fusion Middleware 11.1.2.0.0 > JDeveloper Studio 11.1.2.0.0

2. In the Select Role dialog, choose Studio Developer and click OK.

Page 2: Adf From Oracle

Shaping, which is based on the role of the user, allows the JDeveloper environment to tailor itself. It does this by removing unneeded items from the menus, preferences, new gallery, and even individual fields on dialogs. Read more...

If a dialog box opens asking if you would like to import preferences from a previous JDeveloper installation, click NO. Close the Tip of the Day window.

3. Once loaded, the JDeveloper IDE appears. The very first time you open JDeveloper, the Start Page displays. You can re-invoke the Start Page later by choosing Help > Start Page.

Notice the various options available to help you learn about JDeveloper. After exploring some of these options, close the Start Page by clicking the X on its tab (the X appears

Page 3: Adf From Oracle

when you mouse over the tab).

4. Click the New Application link in the Application Navigator.

5. In the New Gallery, choose Fusion Web Application (ADF) and click OK.

Page 4: Adf From Oracle

6. JDeveloper loads the required features for a Fusion Web application and the Create Fusion Web Application (ADF) wizard launches.In the Name your application page of the wizard, type HRSystem as the name. If required, you can change the directory path to create your files in another location. In the Application Package Prefix field set the value to be demo and click Next.

Page 5: Adf From Oracle

7. In the Name your project page ensure that the project name is Model (the default). Notice that ADF Business Components and Java are listed as the project features of a Fusion Web application.

Click Next.

Page 6: Adf From Oracle

8. The Configure Java settings page allows you to define a default package, a Java source path and an output directory. Click Next to accept the default values.

9. In the second Name your project page, ensure that the Project Name is ViewController. Scroll through the list of project features to see the types of technologies that can be used with a Fusion Web application.

Page 7: Adf From Oracle

Click Next.

10. In the Configure Java settings page accept the defaults and click Finish to create your Fusion Web application and projects.

Page 8: Adf From Oracle

11. The HRSystem application and the two projects are displayed in the Application Navigator on the left of the screen.

Page 9: Adf From Oracle

Notice too the Checklist on the right side of the screen. Read more...

Step 2: Build the Business Service

1. In the CheckList Overview, click the Connect to a Database step.

Page 10: Adf From Oracle

2. The step expands showing useful information such as prerequisites required for performing the task and detailed instructions on how to perform the task. Click the Create a Database Connection button.

3. Specify the following properties for the new connection you are creating:

Connection Name

HRConn

UserName hr

Password hr

Page 11: Adf From Oracle

4. Enter the appropriate Oracle JDBC Settings to point to the right host, port and SID for your database. Click the Test Connection button to verify that you can connect successfully.

5.6. Click OK.7. Click the down arrow to shrink the Connect to a Database step.

Page 12: Adf From Oracle

8. In the Checklist, set the status of the Connect to a Database step to Done.

9. Click the Build Business Services step to expand it, then click the Go to Substeps button.

Page 13: Adf From Oracle

10. In the list of substeps, click the Create Entity Objects and Associations substep.

11. Click the Create Entity Objects and Associations button.

Page 14: Adf From Oracle

12. In the Select Project for Action dialog, select the Model project and click OK.

13. In the Initialize Business Components Project dialog select the HRConn connection if it is not already selected. Click OK.

Page 15: Adf From Oracle

14. The Create Business Components from Tables wizard launches. In the Entity Objects page, click the Query button to examine the data dictionary and see available tables.

Page 16: Adf From Oracle

15. Select the DEPARTMENTS and EMPLOYEES tables in the Available list, and click the right arrow to move your selections to the Selected list. This step creates updatable entity objects based on the tables selected.

Page 17: Adf From Oracle

Click Next to continue.

16. In the Entity-based View Objects page of the wizard, move Departments (HR.DEPARTMENTS) and Employees (HR.EMPLOYEES) to the Selected list. This step creates matching view objects DepartmentsView and EmployeesView for performing queries on the entity objects you just created.

Page 18: Adf From Oracle

Click Next to continue.

17. In the Query-based View Objects page, click the Query button and then move JOBS to the Selected list. This step creates a read-only view object that queries the Jobs table. Then click Next to continue.

Page 19: Adf From Oracle

18. In the Application Module page, click Finish to create the business components in the Model project.

Page 20: Adf From Oracle

19. In the Checklist, set the status of the Create Entity Objects and Associations step to Done.

Page 21: Adf From Oracle

20. Click the Close Step 3 button.

Page 22: Adf From Oracle

21. Click the Back to Checklist link and set the status of the Build Business Services step to Done

Page 23: Adf From Oracle

22. In the Application Navigator right-click AppModule and select Run to invoke the application module tester. This is a small Swing-based application that allows you to test the ADF Business Components you have just created.

Page 24: Adf From Oracle

23. In the Oracle Business Component Browser window, double-click the EmpDeptFkLink1 node to show the department and employees data. Navigate between the records using the Next button and notice the automatic master-detail synchronization.

24. Click the Specify View Criteria button (binocular icon) in the master toolbar, to enter search criteria for your data. Specify 1700 in the LocationID field and click the Find button to execute the query.

Page 25: Adf From Oracle

25. The form now only shows departments in this location. Use the Next button to scroll through the departments at Location 1700.

Page 26: Adf From Oracle

You need to remove the parameter value of the search criteria to access all departments again.

26. Close the Oracle Business Component Browser window, and back in JDeveloper, click

the Save All icon on the JDeveloper menu bar, or select File > Save All from the menu.

Part 2: Developing the User Interface JavaServer Faces (JSF) is a standard Java EE technology that simplifies Web development. In this part of the tutorial you create a JSF page to access the business components that you created in the previous part.

Hide... Step 1: Create a JSF Page

1. Right-click the ViewController project node in the Application Navigator, and select New...

Page 27: Adf From Oracle

The Web part of the application is developed in a separate project called the Viewcontroller project, which you created in the previous part of this tutorial when you created the Fusion Web application. Read more...

2. In the New Gallery, navigate to JSF/Facelets under the Web Tier node, and choose Page in the Items pane. Click OK.

Page 28: Adf From Oracle

3. In the Create JSF Page dialog, rename the page to DeptEmpPage.jsf; make sure the Document Type radio button is set to Facelets, and in the Page Layout tab select the Page Template radio button and choose Oracle Three Column Layout.

Click OK.

4. The page displays in the Design Editor. The template has three columns in it, but you only need two in the page, so delete the third one.Place your cursor in the right-most section called end and right-click to choose Delete.

Page 29: Adf From Oracle

With af:pageTemplate selected in the Structure pane, in the Property Inspector set the startColumnSize property to 350.

Page 30: Adf From Oracle

5. Add some layout components to the page. In the Component Palette expand the Layout group of components and locate the Panel Accordion component in the Interactive Containers and Headers section. Drag it into the start facet of your page.

6. Select af:showDetailItem (the panel accordion that you just added to the page in the previous step) in the Structure window and in the Property Inspector change its Text property to Departments.

Page 31: Adf From Oracle

7. Right-click the new Departments accordion and choose Insert after Show Detail Item - Departments > Show Detail Item. This adds another accordion to your page.

8. Change the Text property to More Info.

This is another way of adding components to a page using context menus directly inside the Design Editor (instead of dragging and dropping from the Component Palette).

9. From the Layout components, click and drag a Panel Splitter component onto the center facet of your page.

Page 32: Adf From Oracle

10. In the Property Inspector change the Orientation property of the new splitter to vertical.

11. From the Layout components, drag a Panel Collection component into the first facet at the top of the splitter on your page.

Page 33: Adf From Oracle

A panel collection is a component that aggregates collection components like table, treeTable and tree to display standard/application menus, toolbars and statusbar items.

12. Using the Structure window, drag a Panel Tabbed component into the second facet of the splitter on your page.

Page 34: Adf From Oracle

13. Double-click the tab DeptEmpPage.jsf at the top of the page to view it in its entirety. The page should look like the screenshot below.

Page 35: Adf From Oracle

14. Click the Save All icon on the JDeveloper menu bar to save your work.

Step 2: Bind Data Controls to the Page

In this step you bind the business components you created in Part 1 of this tutorial to the user interface. You do this with simple drag and drop operations; behind the scenes the ADF Model layer takes care of binding the data for you.

1. In the Design Editor click the Departments accordion to expand it.

Page 36: Adf From Oracle

2. In the Application Navigator expand the Data Controls accordion, and in it expand AppModuleDataControl to expose the business services you defined in the first part of this tutorial.

3. Drag the DepartmentsView1 data control into the Departments accordion in your JSF page. When prompted to choose the type of component you want to create, choose Form > ADF Read-Only Form.

Page 37: Adf From Oracle

4. In the Edit Form Fields dialog, check the Include Navigation Controls checkbox and click OK.

5. In the Data Controls accordion expand DepartmentsView1 to expose the fields it contains, as well as the related EmployeesView3 control for the employees in each department. Note that these are the "detail" employees for the "master" departments -

Page 38: Adf From Oracle

they are linked and therefore the employees you see in this view object are the ones who belong to the particular department you are looking at.

6. Drag the EmployeesView3 data control onto the Panel Collection that you created in the first facet of the PanelSplitter. Create it as an ADF Read-Only Table.

7. In the Edit Table Columns dialog, choose Single Row in Row Selection, and check the checkboxes for Sorting and Filtering. Click OK.

Page 39: Adf From Oracle

8. Drag the EmployeesView3 data control again but this time onto ShowDetailItem in the panelTabbed component in the second facet of the panelSplitter. Create it as an ADF Form.

Page 40: Adf From Oracle

9. In the Edit Form Fields dialog, check the Include Submit Button check box. Using your mouse and the Shift key select the bottom three fields from the list: CommissionPCT,

ManagerId, DepartmentID and delete them by pressing the Delete button at the top right corner of the dialog box. Click OK.

Page 41: Adf From Oracle

10. Click the Save All icon on the JDeveloper menu bar to save your work. Right-click in the page and choose Run. This will compile your project, build it, and launch the integrated WebLogic Server to run it. Then a Web browser opens up to display the page. You can follow the progress of these steps in the Log window in JDeveloper.

Page 42: Adf From Oracle

11. Once the page displays in the browser, resize the page area using the splitter to display the department data. Then use the Next button to scroll through the departments. Notice that the employee data changes accordingly in the table and the form beneath it.

Page 43: Adf From Oracle

12. Close the browser window.

Step 3: Refine the Business Services

In these steps you refine the business services by adding validation rules, formatting and default values.

1. In the Application Navigator under the Model project, locate the Employees entity object and double-click it to open it for editing.

Page 44: Adf From Oracle

2. In the Employees.xml window, click the Attributes finger tab and locate the Salary attribute, and select it. Scroll down in the page to the Validation Rules tab and click the Add icon to add a new validation rule.

Page 45: Adf From Oracle

3. In the Add Validation Rule dialog choose Range from the Rule Type drop down list. Note the various other types of rules you can define here. In the Operator field ensure that the value is set to Between, and type 0 for the minimum value and 99000 for the maximum value fields.

Page 46: Adf From Oracle

4. Click the Failure Handling tab to define an error message that will display when the validation fails. In the Message Text field type an error message like "Salary out of range 0 to 99,000" and click OK.

Page 47: Adf From Oracle

5. Next you add a default value to the hire date field - so that when a new employee is created the hire date defaults to the current date.In the Employees.xml window, locate the HireDate attribute, and select it. In the Value section of the Property Inspector, locate the Default Value Type property and choose Expression, then set the Default Value property to adf.currentDate. This will ensure the default value for a new record is set to today's date.

6. You can also specify UI Hints for attributes to control how they display by default in the forms and pages that use them. In this step you add a default format mask for the hire date field. You can also specify labels and tooltip help here.In the UI Hints section of the Property Inspector locate the Format Type property and select Simple Date.

Page 48: Adf From Oracle

Set the Format property to dd/MMM/yyyy.

Page 49: Adf From Oracle

7. Run the page again to test the refinements you have made.

Page 50: Adf From Oracle

8. Test the HireDate field. Notice that as soon as you click in the field you are provided with an example of the format for the date (as you defined it).

Page 51: Adf From Oracle

9. Try to update the field for one of the employees with an invalid date such as 11/11/123 and notice the error message when you click the Submit button.

Page 52: Adf From Oracle

Use the Clock/Calendar icon next to the field to display a pop-up calendar and choose a valid date.

Page 53: Adf From Oracle

10. Update the Salary field to a value that will break the validation you created earlier (e.g -9) and click the Submit button to see the error message you created.

Page 54: Adf From Oracle

11. Browse to department 50 and notice that you can now scroll the data in the employees table. Click on one of the column headers in the table to sort the data in the table.

Page 55: Adf From Oracle

12. Click a column heading in the table and drag it to reposition it in the table.

The new column order looks as follows:

Page 56: Adf From Oracle

13. In the Filter field above the LastName column, type B% and press Enter to filter the table to show only those employees whose surname begins with the letter B.

14. Experiment with the other menus and buttons of the table to see additional functionality. Once you are finished, close the browser and return to JDeveloper.

Step 4: Enhance the JSF Page

In the next steps you enhance the user interface by modifying the table of employees to add the ability to do column selection, by reordering the fields in the Employee details tab, and by binding the business components to a graph representation. You do this with simple drag and drop operations - behind the scenes the ADF Model layer handles the data binding for you.

Page 57: Adf From Oracle

1. Click the DeptEmpPage.jsf tab to return to the page in the Design Editor. Select the Employees table in the Design Editor or in the Structure pane. Set the Column Selection property of the table to Single.

2. In the Structure window select the panelFormLayout that surrounds the employee details fields in the showDetailItem tab.

3. In the Property Inspector set the Rows property to 5.

Page 58: Adf From Oracle

When you run the page in a later step you will see that the fields in the tab are now arranged in two columns. Read more...

4. Next you add a graph representation of the data to the page; this is done using the ADF Data Visualization set of JSF components. In the Design Editor click the More Info accordion to expand it. Then drag the EmployeesView3 data control into the More Info accordion and create it as a Graph.

Page 59: Adf From Oracle

The graph can be displayed as static PNG image or an interactive Flash component.Read more...

5. In the Component Gallery choose Pie from the list of graphs on the left and Pie again as the graph type. In the bottom pane, select the third Quick Start Layout.

Page 60: Adf From Oracle

Then click the OK button.

6. In the Create Pie Graph dialog choose Salary in the Pie field and drag and drop LastName into the Slices field. Click OK.

Page 61: Adf From Oracle

7. Click the Save All icon on the JDeveloper menu bar to save your work and then right-click within the page and select Run from the context menu.

Page 62: Adf From Oracle

8. Browse to department 50. Because you set the column selection to single, note the additional behaviors for the table that are available once you choose a column - such as Freeze and Wrap. Select a column, then click the Freeze button. Now use the horizontal scroll bar to view the right-most columns.

Page 63: Adf From Oracle

9. In department 50 expand the More Info accordion and notice the graph and the popup it displays when you hover over it with your mouse.

10. Scroll over to the showDetailItem1 tab, and notice how the fields have been reordered into two columns.

Page 64: Adf From Oracle

When you are done, close the browser and return to JDeveloper.

Step 5: Add More Complexity to the Business Services

In this step you add a new business service to the application to display a subset of the fields from the Employees table, along with the department name from the Departments table. You also add a calculated field calculating the annual salary of an employee and a list of values field for department names. Oracle ADF Business Components allows you to create such complex updatable components in a declarative way.

1. In the Application Navigator right-click the demo.model package and choose New View Object.

Page 65: Adf From Oracle

2. In the Name page of the Create View Object wizard, type EmpDetails as the Name and retain Entity object as the default data source.

Click Next.

3. In the Entity Objects page of the wizard first select Employees and shuttle it to the right, and then select the Departments entity and add it also to the Selected pane.

Page 66: Adf From Oracle

Note that only the Employees entity has the updatable checkbox checked - the departments entity is used to read data only.

Click Next.

4. In the Attributes page of the wizard, shuttle the following Employees attributes into the Selected pane: EmployeeId, FirstName, LastName, Email, Salary, HireDate, JobId.

And from the Departments entity, shuttle the following attributes into the Selected pane:DepartmentId, DepartmentName.

Page 67: Adf From Oracle

Click Finish to complete the view object creation.

5. Next you add a calculated attribute to the view object - an attribute that displays the employee's annual salary.In the Application Navigator double-click EmpDetails to open it.

6. Click the Attributes finger tab and from the drop down list choose New Attribute.

Page 68: Adf From Oracle

7. In the New View Object Attribute dialog type AnnualSalary as the name for the new attribute and click OK.

8. In the Details tab at the bottom of the attributes list, set the following properties for the AnnualSalary attribute:

Field ValueName AnnualSalary

Type Number

Default Value

Expression (Checked)

Value Salary * 12

Page 69: Adf From Oracle

9. . 10. In the next steps you add a list of values to a field based on a set of values stored in

another table. In this case you create a list of values for possible job titles based on the Jobs table.In the EmpDetails.xml editor click the Attributes finger tab and select the JobId attribute. Click the List Of Values tab at the bottom of the attributes list.

Page 70: Adf From Oracle

11. In the List of Values tab click the Add button to create a list of values.

Page 71: Adf From Oracle

12. In the Create List of Values dialog click the green plus to the right of the List Data Source field. In the View Accessors dialog, shuttle JobsView into the View Accessors pane.

Click OK.

13. Back in the Create List of Values dialog, choose JobId as the List Attribute.

Page 72: Adf From Oracle

14. Still in the Create List of Values dialog click the UI Hints tab and choose Combo Box with List of Values as the Default List Type and then shuttle the Job Title attribute into the Selected pane.

Page 73: Adf From Oracle

Click OK. Save your work.

15. Now you add the new object that you've created to the data model.In the Application Navigator double-click AppModule to open it for editing and choose the Data Model finger tab.

Page 74: Adf From Oracle

16. Click the EmpDetails view object and shuttle it into the Data Model pane. Save your work.

Page 75: Adf From Oracle

17. Use the Business Component Browser to test the new functionality you have just incorporated through the EmpDetails view object. In the Application Navigator right-click AppModel and select Run to invoke the tester.

Page 76: Adf From Oracle

18. Double-click the EmpDetails1 view object.

Page 77: Adf From Oracle

19. Notice that the new calculated AnnualSalary field is displayed, along with DepartmentId and DepartmentName. None of the them are updatable here.

20. Use the drop down list for the JobId field to choose a new job.

Page 78: Adf From Oracle

21. The field is populated with the new job.

Page 79: Adf From Oracle

22. Close the Business Component Browser window without committing the changes.

Part 3: Enhancing the User Interface

Web applications usually have more than one page in them. In this part of the tutorial you add another page - a Search page - to your application and use the ADF Task Flow Diagrammer to define the navigation rules between the two pages. You then use features of the ADF Faces Framework to add extra functionality to the pages. Finally you create a reusable page fragment and add it to the DeptEmpPage page.

Read more... Step 1: Create a Page Flow

1. In the Application Navigator locate the adfc-config file under the Page Flows node in the ViewController project. Double-click it to open it in the editor. This is where you are going to define the application's navigation.

Page 80: Adf From Oracle

2. Drag the DeptEmpPage.jsf file from the Application Navigator into the empty adfc-config diagram.

3. From the Component Palette drag and drop a View component into the adf-config diagram, and rename it query. This represents the new JSF page that you are about to create.

Page 81: Adf From Oracle

4. From the Component Palette select Control Flow Case and then click on the DeptEmpPage and drag a line to the query page.

Name this line goQuery.

Page 82: Adf From Oracle

5. From the Component Palette choose another Control Flow Case and then create an opposite flow from the query page to the DeptEmpPage. Name this flow back.

6. Double-click the query view in the diagram to create the new page. In the Create JSF Page dialog accept the default Facelets radio button, and with the Quick Start Layout radio button selected, click Browse.

Page 83: Adf From Oracle

7. In the Component Gallery, retain the default One Column category, type and layout, but check the Apply Themes checkbox in the Options pane.

Page 84: Adf From Oracle

Click OK and OK again to create the page.

8. To add the employees search functionality to the page, open the Data Controls accordion, and locate EmpDetails1. (If you do not see it click the Refresh button).

Page 85: Adf From Oracle

9. Expand the EmpDetails1 data control and expand the Named Criteria node below it. Select All Queriable Attributes and drag it into the new query.jsf page. Create it as a Query > ADF Query Panel.

10. In the Data Controls accordion select the EmpDetails1 data control and drag it into the center area of the page below the query component. Create it as a Form > ADF Form.

Page 86: Adf From Oracle

In the Edit Forms Details, check both the Include Navigation Controls and the Include Submit Button checkboxes. Click OK.

Page 87: Adf From Oracle

11. With the panelFormLayout still selected, use the Property Inspector to set the Rows property to 5.

Page 88: Adf From Oracle

12. In the Structure window locate the Submit button, right-click it and choose Insert after af:command:Button - Submit > Button.

Page 89: Adf From Oracle

13. In the Property Inspector change the Text of the new button to Back and for the Action property select back from the drop down list. This causes the button to perform the navigation you defined in the page flow diagram.

Page 90: Adf From Oracle

14. Next you add transaction operations to the page to allow you to commit and rollback changes. In the Data Controls Palette expand the application module level Operations node to locate the commit and rollback operations. Drag the Commit operation into the Structure window before the First Button. When prompted for a drop target choose ADF Button.

Page 91: Adf From Oracle

15. Repeat the same steps for the Rollback operation.

Page 92: Adf From Oracle

16. In the Property Inspector, for the Rollback and for the Commit buttons, reset the Disabled property to default to make both buttons always selectable.

17. Double-click the Query.jsf tab to maximise the page in the Design Editor. Your page should look as follows:

Page 93: Adf From Oracle

18. Click the DeptEmpPage.jsf tab to switch back to the page. A quick way to navigate to this or any other file is by using the global find box at the top right of JDeveloper and typing the file name there.

Page 94: Adf From Oracle

Then just click the file name to open it in the editor.

19. In the page design, expand the Departments accordion. From the Component Palette, choose a Button component and drag it into the Departments accordion between the First and Previous buttons. Alternatively you can right-click the First button and choose insert after > button to add the new button.

20. Using the Property Inspector change the Text of the button to Query and for the Action property type goQuery or select it from the drop down list if available. This causes the button to perform the navigation you defined in the page flow diagram.

Page 95: Adf From Oracle

21. Click the Save All icon on the JDeveloper menu bar to save your work, and then right-click the DeptEmpPage.jsf page and choose Run.

Page 96: Adf From Oracle

22. When the page displays in your browser click the Query button to navigate to the new page. In the Search page click Advanced to display detailed search criteria.

Page 97: Adf From Oracle

23. In the FirstName field accept the default Starts with, and type the letter G. Press Search.The form below displays the record for Guy Himuro.

Page 98: Adf From Oracle

24. Experiment with the form, saving your search criteria, creating more complex queries and updating data for employees. Note how this form displays a view of the data that matches the definition in the view object you created - including information for Department name as well as a list of values for the Job id and the employee's annual salary. You can also make changes to the data and commit and rollback your transactions as needed.

When you are finished close the browser window.

Step 2: Use Partial Page Refresh

In the next steps you become acquainted with some of the features of the ADF Faces Framework. You enhance your pages with additional Ajax functionality leveraging the declarative development features offered by ADF Faces components.

Page 99: Adf From Oracle

In the next few substeps you use the partial page refresh capability offered by ADF Faces. Read more...

1. Open the query.jsf file in the Design Editor, if it is not already open. Select the Salary field. In the Property Inspector set the value of the Id property to sal.

2. Still in the Property Inspector expand the Behavior node and set the AutoSubmit property to True.

Page 100: Adf From Oracle

3. In the Structure window locate the AnnualSalary field. (Another option to get to this field is to double-click the query.jsf tab to maximize the window and then locate the field in the Design Editor). Locate the PartialTriggers property under the Behavior section and click the arrow to its right to choose Edit.

Page 101: Adf From Oracle

4. In the Edit Property dialog locate the Salary field and shuttle it to the right using the blue arrow. Click OK.

5. Click the Save All icon on the JDeveloper menu bar to save your work, and run DeptEmpPage.jsf.

Page 102: Adf From Oracle

6. When the page displays, click the Query button in the Departments panel.

7. In the Search page search for employees whose first name begins with A%.

Page 103: Adf From Oracle

Note the salary and annual salary values.

Page 104: Adf From Oracle

8. Update the Salary field and then tab out of it. Notice the immediate change to the AnnualSalary field once you leave the Salary field. However this is the only field that is refreshed (not the whole page).

Page 105: Adf From Oracle

9. Close the browser.

Step 3: Use the ADF AutoSuggest Behavior The af:autoSuggestBehavior component displays a drop down list of suggested items when the user types into an input component. Read more...

1.In the query page, select the JobId field.

Page 106: Adf From Oracle

2. In the Component Palette expand the Operations node, and locate Auto Suggest Behavior in the Behavior section. Drag and drop the Auto Suggest Behavior operation onto the JobId field.

3. In the Insert Auto Suggest Behavior dialog box type #{bindings.JobId.suggestedItems}. Click OK.

4. Save your work and then run the query page.

Page 107: Adf From Oracle

5. Type 121 in the EmployeeId field, and click the Search button. In the record for Adam Fripp update the JobId field by typing 's' in it. A number of jobs beginning with 's' are suggested.

Page 108: Adf From Oracle

6. Add 'a' after the 's' and see the list of suggestions modified accordingly.

Page 109: Adf From Oracle

7. Choose Sales Representative from the three remaining options, to populate the field.

Page 110: Adf From Oracle

8. Close the browser without saving the change.

Step 4: Use Drop Down Menus and Operation Components

In this step you add a drop down menu to a page and use a couple of ADF Faces operation components to add Javascript-based operations to the page - to export table data into an Excel spreadsheet and to create a printable page.

1. In the DeptEmpPage.jsf file click inside the menus facet in the panel collection surrounding the Employees table. Right-click and from the context menu choose Insert Inside Facet menus > Menu.

Page 111: Adf From Oracle

2. In the Property Inspector set the Text property to My Options.

3. In the Property Inspector expand the Behavior node and set the Detachable property to true.

Page 112: Adf From Oracle

4. In the Structure window right-click the menu component and choose Insert inside af:menu - My Options > Menu Item.

Page 113: Adf From Oracle

5. In the Property Inspector set the Text property of the new menu item to Export to Excel.

6. With the new Export to Excel menu item still selected in the Structure window, expand the Listeners section of the Operations node of the the ADF Faces components in the Component Palette. Locate the Export Collection Action Listener component and drag it onto the Export to Excel menu option in the Structure window.

7. In the Insert Export Collection Action Listener dialog click the down arrow next to ExportedId field and choose Edit.

Page 114: Adf From Oracle

8. In the Edit Property dialog navigate through the page structure to locate the table - t1 component and select it. Click OK.

9. From the Type drop down list select excelHTML and click OK.

Page 115: Adf From Oracle

10. Add another menu option to the menu. In the Structure window right-click the Export to Excel menu component and from the context menu choose Insert After af:commandMenuItem - Export to Excel > Menu Item.

11. Set the Text property of this new menu option to Printable Page.

Page 116: Adf From Oracle

12. In the Behavior section under the Operations node of the Component Palette select the Show Printable Page Behavior operation to add it to the new menu item. Drag and drop it onto the new menu option you created.

13. Click the Save All icon on the JDeveloper menu bar to save your work, and then choose Run.

14. When the page displays click the new menu and detach it.

Page 117: Adf From Oracle

15. Then invoke each one of the menu options you created, for example Export to Excel.

You may need to accept the download of the file in the browser window to be able to access the Excel file.

16. Try the Printable Page menu option.

Page 118: Adf From Oracle

The page is ready for printing.

Close the browser window.

Step 5: Add CRUD Operation Components to your Page The next few tasks examine some of the data operations that JDeveloper makes available to view objects. Read more... You see how to add a Delete operation and a CreateInsert operation. When the user clicks the CreateInsert button to insert the new row you want the table to refresh to display the new empty row. To do this you again use the Partial Page Refresh feature that was covered in Step 2 of this part of the tutorial.The view object uses a bind variable to pass the employee's email into the query.

1. Click the query.jsf tab to return to the Query page, opening the Structure pane. In the Data Controls accordion expand the EmpDetails1 node and then the Operations node below it. Select the CreateInsert operation.

Page 119: Adf From Oracle

2. Drag the CreateInsert operation in the Structure pane onto the panelGroupLayout in the footer facet of the employees form. Create it as an ADF Button.

Page 120: Adf From Oracle

3. In the Property Inspector set the Id property for the button to CreateInsert.

4. Still in the Property Inspector expand the Behavior node and in the PartialTriggers property choose Edit from the dropdown list.

Page 121: Adf From Oracle

5. In the Edit window scroll through the page's components until you find the CreateInsert button. Shuttle it into the Selected pane.

Page 122: Adf From Oracle

Click OK. This action defines the CreateInsert component as the trigger that will cause the table to refresh.

6. In the same way add a Delete operation by dropping the Delete operation from EmpDetails1 onto the panelGroupLayout in the page footer. As before, create it as an ADF button.

Page 123: Adf From Oracle

7. The two buttons display at the bottom of the query page.

Page 124: Adf From Oracle

8. Save your work and then run the Query page.9. When the page displays type F% in the LastName field and click the Search button. The

first F% employee record displays.

Page 125: Adf From Oracle

10. Click the CreateInsert button. The page refreshes and the fields are cleared down (except for the HireDate field, which you set to default to the current date) so that a new record can be inserted.

Page 126: Adf From Oracle

 

Step 6: Create a Query-only Business Service Based on ParametersIn this step you create a view object that allows end users to search for an employee's name based on their email address. Read more...

1. In the Application Navigator locate the demo.model package and right-click it to choose New View Object....

Page 127: Adf From Oracle

2. In the Create View Object wizard set the Name property to EmpByEmail and choose the SQL Query radio button as the data source. Click Next.

3. In Step 2 of the Create View Object wizard type the following query:

select first_name,last_name from employees where email=:p_email

The ':' before p_email means that it is a variable that will be passed to the query.

Click the Test and Explain button to verify your query.

Page 128: Adf From Oracle

Click Close and then click Next.

4. In Step 3 of the Create View Object wizard, click the New button to define a new bind variable. Set the Name property to p_email.

Page 129: Adf From Oracle

Click the Control Hints tab and set the Label Text to Email.

Page 130: Adf From Oracle

5. Click Next a few more times to accept all the defaults, until you get to step 8 of the wizard. Here check the Add to Application Module check box to include your new view in the data model. Click the Finish button.

Page 131: Adf From Oracle

6. Save your work and then run the Business Component Browser to test the new view. Double-click the new EmpByEmail1 view and when prompted to insert a value for the variable enter SKING and press OK to get the results for this email address.

Running the Business Component Tester. Read more...

Page 132: Adf From Oracle
Page 133: Adf From Oracle

7. To try another value click the Edit Bind Variables button.

Page 134: Adf From Oracle

Close the Business Component Browser.

Step 7: Create a Reusable Page FragmentIn this step you create a reusable page fragment. Read more...

1. First create a new task flow specifically for this page.In the Application Navigator right-click the ViewController project and choose New...

Page 135: Adf From Oracle

2. In the Web Tier > JSF/Facelets category choose ADF Task Flow.

Page 136: Adf From Oracle

Click OK.

3. In the Create Task Flow dialog set the File Name property to search-email-flow.xml.Verify that the Create As Bounded Task Flow and Create with Page Fragments checkboxes are both checked.

Click OK.

4. In the Design Editor drag a View component from the Component Palette onto the empty diagram and name it searchEmail. You only use a single page in this flow, but you can have bounded task flows with multiple pages and still include them in other JSF pages.

Page 137: Adf From Oracle

5. Double-click the new searchEmail view component to create the page fragment for it.Accept all the defaults in the dialog that displays and make sure the file name is searchEmail.jsff. This creates the page as a page fragment that can be included in other JSF pages. Click OK.

Page 138: Adf From Oracle

6. An empty page displays in the Design Editor. Expand the Data Controls accordion and, if necessary, click the Refresh button to ensure that the new EmpByEmail data control appears in the list.

Page 139: Adf From Oracle

7. Expand the new EmpByEmail1 view and the Operations node beneath it. Select the ExecuteWithParams operation. You are going to use this operation to execute the query for this view passing it the necessary parameter.

8.Drag the ExecuteWithParams operation to your new page, and create it as an ADF Parameter Form....

Page 140: Adf From Oracle

9. In the Edit Form Fields dialog change the display label for the p_email value from default to Email. Click OK.

10. In the Design Editor for the page, click the ExecuteWithParams button and use the Property Inspector to change the Text property to Find Details.

Page 141: Adf From Oracle

11. From the Data Controls accordion, drag the EmpByEmail1 view onto the page beneath the button. Create it as a Form > ADF Read-only Form....

12. Accept the defaults presented in the Edit Form Fields dialog and click OK. Save your work.

Page 142: Adf From Oracle

The page should look like this:

13. The new bounded task flow now contains a page fragment; next you include the complete bounded task flow inside another JSF page.In the Application Navigator locate the DeptEmpPage.jsf file and open it in the Design Editor, if it is not already open. From the Component Palette Layout section drag and drop a Separator component into the left accordion in the DeptEmpPage.jsf page beneath the Departments form.

Page 143: Adf From Oracle

14. Add the new flow you created as a region to the existing page.From the Application Navigator drag and drop the search-email-flow.xml file into the left accordion in the DeptEmpPage.jsf page beneath the new separator. Create it as a Region.

15. Your page should now look like the screenshot below.

Page 144: Adf From Oracle

16. Save your work and then run the updated DeptEmpPage.jsf page.When the page displays in your browser test the new functionality by entering an email value in the Email field and pressing the Find Details button.

Page 145: Adf From Oracle

17. The employee name information is returned.

Summary

Page 146: Adf From Oracle

In this tutorial you built a small Web application that interacts with a database. You learned how to:

Build the business services that supply the data to the application Create a data-bound JSF page Enhance the page by adding more complex operations Add a second JSF page to the application and create a page flow diagram to define the

navigation between the pages Create a reusable page fragment containing a business service based on parameters