What are the steps to do connection pooling in weblogic?
Answer / gajendra
We can implement connection pooling in weblogic as follows.
1. OPen weblogic console.on the top right hand side corner
of the window click on services tab.
2.Expand it and select JDBC.
3.Create a connection pool
4.Create a DataSource.
5.Create a JNDI.
In the programs make use of the following code to get the
connection from ConnectionPool
Context ic=null;
DataSource ds;
Connection con=null;
Hashtable ht=new Hashtable();
ht.put
(Context.INITIAL_CONTEXT_FACTORY,"Weblogic.jndi.WLInitialCon
textFactory");
ht.put(Context.PROVIDER_URL,"t3://localhost:7001");
ic=new InitialContext(ht);
ds=(DataSource)ic.lookup("jndi name given in weblogic");
con=ds.getConnection();
| Is This Answer Correct ? | 20 Yes | 3 No |
what is class.forname() and how it will be useful ?
What class is used to implement a Throwable array?
How many types of exception can occur in a java program?
Can this keyword be used to refer static members?
What are the uses of final, finally and finalize in java?
2 Answers Agiline, FINO PayTech, HCL,
How many methods does cloneable interface contains?
How many decimal digits is 64 bit?
What does @override mean?
What is proper subset?
What will happens if you opened Internet Explorer 4 times?
What is lastindexof in java?
What are the important features of Java 11 release?