This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
To some extent, we need the references because the spec says so. As a result, the EJB containers require you to use references.
The reason that the spec says so is to provide a level of indirection between the JNDI and the actual resource. This is true for DataSources and other resources as well.
EJB references are good practice because they help to achieve location transparency. In a nutshel your bean's jndi name could change and as an example consider versioning: a new version of the bean could be deployed with another jndi name. If you use ejb references than your configuration don't need to change at all. If your app would look up the bean based on its jndi name, than your configuration must change accordingly. However they are not mandatory and you can lokup your remote as well as local ejb home objects if you like. Regards.
I think, therefore I exist -- Rene Descartes
Karol Oslowski
Ranch Hand
Joined: Jul 22, 2005
Posts: 51
posted
0
Thank you very much!
Your answers have clarified this issue to me.
kind regards
Valentin Tanase
Ranch Hand
Joined: Feb 17, 2005
Posts: 704
posted
0
you're very welcome Karol, I'm glad I could help
Roger Chung-Wee
Ranch Hand
Joined: Sep 29, 2002
Posts: 1683
posted
0
The reason that the spec says so is to provide a level of indirection between the JNDI and the actual resource. This is true for DataSources and other resources as well.
Let's understand the reason for this. The Bean Provider writes reusable components which can be deployed anywhere and by anyone. When he needs to do a JNDI lookup on a DataSource, he does not know the real JNDI name of the database let alone the real name of the database. So, he invents a JNDI name to use in his code.
However, he also declares the same fake JNDI name in the DD.
The Application Deployer will then map the fake JNDI name to the real JNDI name (let's call it CustDatabse) under which the DataSource is registered using a vendor-supplied tool. The System Administrator will then configure the database (let's say its real name is CustomerData) into the server and gives it a JNDI name.
So, the use of fake JNDI names and subsequent mapping to real names is fundamentally important to the objective of WODA (write once deploy anywhere).
SCJP 1.4, SCWCD 1.3, SCBCD 1.3
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.