whats is mean by jndi

Answers were Sorted based on User's Feedback



whats is mean by jndi..

Answer / abhinandan

JNDI is used to create instances of object and passing a
reference of the object to the server.Through JNDI one can
access the particular object through an unique name
associated with the particular Object. Eg

Hashtable ht = new Hashtable();
ht.put("Context.InitialContext","---");
ht.put("URL.ProviderURL","t3://localhost:1099/");
Context cntx = new InitialContext(ht);
DataSource ds =(DataSource)cntx.lookup("TestDataSource");
Connection con = ds.getConnection();

Is This Answer Correct ?    9 Yes 0 No

whats is mean by jndi..

Answer / mahendar

JNDI is an naming registry.Using JNDI you can get SQL
Connection,mail connection.

Is This Answer Correct ?    3 Yes 0 No

whats is mean by jndi..

Answer / gokul d

jndi stands for java naming directory interface....it has
two methods ie naming.lookup(url) and naming.bind
(host,server) used in networking as well in EJB.

Is This Answer Correct ?    2 Yes 0 No

whats is mean by jndi..

Answer / siva prasad

Java Naming Domain Interface

Is This Answer Correct ?    2 Yes 14 No

Post New Answer

More Advanced Java Interview Questions

What are the purpose of introspection?

0 Answers  


How do you iterate in Hashmap?

1 Answers   HCL, Infotech,


What are the high-level thread states?

1 Answers  


What is source and listener?

1 Answers  


What is glasgow?

0 Answers  






What is a tasks priority and how is it used in scheduling?

0 Answers  


Define the remote object implementation?

0 Answers  


What is a modular application?

0 Answers  


What is synchronization and why is it important?

0 Answers  


What is table mutation and how do you avoid it?

0 Answers  


Which containers use a border layout as their default layout?

0 Answers  


What is the difference between Process and Threads?

19 Answers  


Categories