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

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 20: Line 20:


==Simple Environment Entry==
==Simple Environment Entry==
Applications use ''simple environment entries'' do declare a dependency on an external configuration parameter. Examples of such dependencies are:


=TODO=
=TODO=

Revision as of 18:42, 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 most portable way of mapping the environment specific values and resources is to specify them in deployment descriptors. The deployment descriptors act as a layer of indirection between code and the deployment environment. The code does not change, but the deployment descriptors do. The developers have an option to also do that mapping in the code, using "lookup" attributes associated with various annotations, but that results in code less portable between environments.

Application Component Environment

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

Environment Entry

Simple Environment Entry

Applications use simple environment entries do declare a dependency on an external configuration parameter. Examples of such dependencies are:

TODO