Displaying application module pool statistics
In the A passivation/activation framework for custom session-specific data recipe in this chapter, we touched upon how application module pools are used by the ADF Business Components framework. In this recipe, we will introduce the oracle.jbo.common.ampool.PoolMgr
application module pool manager and oracle.jbo.common.ampool.ApplicationPool
application module pool classes, and explore how they can be utilized to collect statistical pool information. This may come in handy when debugging.
The use case that will be implemented by the recipe is to collect application module statistics and make them available in a generic view object, that can then be used by all application modules to gather and present statistical information to the frontend user interface.
Getting ready
You will need to have access to the SharedComponents
workspace that was developed in the Breaking up the application in multiple workspaces recipe in Chapter 1, Pre-requisites to...