JEE Core Concepts - Resources, Naming and Injection: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
Line 9: Line 9:
The mechanism than makes this possible is the [[#Application_Component_Environment|application component environment]], also known as "enterprise naming context" or "ENC".  
The mechanism than makes this possible is the [[#Application_Component_Environment|application component environment]], also known as "enterprise naming context" or "ENC".  


The application code relies on [[#Environment_Entry|ENC named entries]] to refer to configuration values and external resources. The names of those elements do not change in the code, and those names are mapped to deployment environment specific values and resources during deployment. The use of ''deployment descriptors'' is essential part of the mapping. The deployment descriptors act as a layer of indirection between code and the deployment environment, and provide the mappings mentioned above. The code does not change, but the deployment descriptors do.
The application code relies on [[#Environment_Entry|ENC named entries]] to refer to configuration values and external resources.  
 
The names of those elements do not change in the code, and those names are mapped to deployment environment specific values and resources during deployment. The use of ''deployment descriptors'' is essential part of the mapping. The deployment descriptors act as a layer of indirection between code and the deployment environment, and provide the mappings mentioned above. The code does not change, but the deployment descriptors do.


=Application Component Environment=
=Application Component Environment=

Revision as of 18:36, 7 April 2017

Internal

Changing Application Behavior without Changing Code

The possibility to change an application's behavior without changing code is a core concern in JEE. The entire Chapter 5 in the JEE specifications is dedicated to it.

The mechanism than makes this possible is the application component environment, also known as "enterprise naming context" or "ENC".

The application code relies on ENC named entries to refer to configuration values and external resources.

The names of those elements do not change in the code, and those names are mapped to deployment environment specific values and resources during deployment. The use of deployment descriptors is essential part of the mapping. The deployment descriptors act as a layer of indirection between code and the deployment environment, and provide the mappings mentioned above. The code does not change, but the deployment descriptors do.

Application Component Environment

The application component environment is also known as enterprise naming context or ENC.

Environment Entry

Simple Environment Entry

TODO