Hi
I'm learning ejb 3.0 and i need some clarifications.
Please let me know
Dependency Injuction
====================
@EJB
private static HelloWorld helloWorld;
public static void main(String[] args) {
System.out.println("Looking up HelloWorld");
System.out.println("Using Dependency Injection .. invoking
sayHello ");
helloWorld.sayHello("Debu Panda!");
System.out.println("Please view the console to see the output
emitted by the EJB Method");
}
=====================
How client JVM internally connects with the perticular ejb (suppose
java:comp/env/ejb/HelloWorld)
alont with the client class , what extra things it need to have..
please help me..
raghunath nandyala