-
Enhancement
-
Resolution: Fixed
-
P4
-
6
-
b45
-
generic
-
generic
Here is a feedback I received from the EJB engineering team:
-------------------------------------------------------------
The following pattern is heavily used in all J2EE applications
Context ic = new InitialContext();
obj = ic.lookup(name);
It would be nice to have shorthand static lookup method something like below:
obj = InitialContext.getObject(name);
------------------------------------------------------------------------------
-------------------------------------------------------------
The following pattern is heavily used in all J2EE applications
Context ic = new InitialContext();
obj = ic.lookup(name);
It would be nice to have shorthand static lookup method something like below:
obj = InitialContext.getObject(name);
------------------------------------------------------------------------------