Applying ADF Faces component's attributes recommendations
There are several component-level tuning options that can be applied to the attributes of different components of your page and can increase the performance in a great way.
You'd be amazed by how small attribute changes can make a huge impact on the performance and scalability of your ADF application.
This recipe doesn't require an application as we will discuss those recommendations and elaborate on their importance.
How to do it…
In order to understand different optimizations over a component's attribute, perform the following steps:
Use the
immediate
attribute if you don't want to process the data validation.Use the
subform
component if you have a special behavior of grouped components.Use the
rendered
attribute instead of thevisible
attribute to save the component mark up from being written inside the page's DOM.Use the client-side event for relatively simple event handling to speed up the application.
Always cancel the server-side...