| Author |
need help on EJBOverview
|
Loka Nalla
Greenhorn
Joined: Apr 20, 2006
Posts: 12
|
|
Hi, I see a line in study guide in the EJB Overview chapter 1. Could anybody explain me what does the below line say? If possible an example would help me to understatnd. "The enterprise bean must not attempt to gain access to packages and classes that the usual rules of the Java programming language make unavailable to the enterprise bean" Thank you Loka
|
 |
Mikalai Zaikin
Ranch Hand
Joined: Jun 04, 2002
Posts: 3099
|
|
This basically means that Bean Provider *must* *not* use Java Reflection API to get access to some variables or methods which are not accessible via regular Java calls. For example, using Java Reflection, it is possible to get/set private variables from other classes. Doing this will break EJB Container contract which provides security, threading, pooling, etc.
|
Free SCDJWS 5.0 Study Guide - SCDJWS 5.0 Quiz (How to get SCDJWS 5.0 Quiz)
Java Platform, Enterprise Edition 6 Web Services Developer Certified Expert Exam Study Guide and Quiz
|
 |
 |
|
|
subject: need help on EJBOverview
|
|
|