Synchronizing business components with database changes
During the development process of an ADF Fusion web application, as the database schema evolves, there will be a need to synchronize the corresponding business components used in order to reflect these changes in the database schema. The process of synchronizing the business components is inherently supported in JDeveloper via the Synchronize with Database feature. Other capabilities also exist, such as making an attribute transient for a database table column that has been removed, and adding new entity attributes to view objects via the Add Attribute from Entity feature.
In this recipe, we will demonstrate a business components synchronization scenario that involves the addition, deletion, and modification of database table columns.
Getting ready
Before engaging in this recipe, you need to create a sample table in your database schema called SYNCHRONIZATION
. We will use this table to demonstrate the business objects synchronization...