is the database listeniig on that port?
Main Topics
Browse All TopicsHi,
I am required to do datasource routing using AbstractRoutingDataSource.
----------------------Dyna
package com.walmart.eai.util;
import java.sql.SQLException;
import java.sql.Wrapper;
import javax.sql.DataSource;
import org.springframework.jdbc.d
public class DynamicDatasourceRouter extends AbstractRoutingDataSource{
@Override
protected Object determineCurrentLookupKey(
{
return EnvironmentContextHolder.g
}
}
--------------------------
package com.walmart.eai.util;
public class EnvironmentContextHolder {
private static final ThreadLocal<EnvironmentTyp
public static void setEnvironmentType(Environ
if (environmentType == null) System.out.println("Enviro
contextHolder.set(environm
}
public static EnvironmentType getEnvironmentType(){
return (EnvironmentType) contextHolder.get();
}
public static void clearEnvironmentType(){
contextHolder.remove();
}
}
--------------------------
package com.walmart.eai.util;
public enum EnvironmentType {
C1,
C2,
}
--------------------------
<bean id="eaiDataSource" class="com.walmart.eai.uti
<property name="targetDataSources">
<map key-type="com.walmart.eai.
<entry key="C1" value="JNDI1" />
<entry key="C2" value="JNDI2" />
</map>
</property>
<property name="defaultTargetDataSou
</bean>
--------------------------
I am setting the value of the EnvironmentType of the EnvironmentContextHolder just before querying the DB as follows:
EnvironmentContextHolder.s
--------------------------
But this not working. Where am I going wrong?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: cuttieveenzPosted on 2009-05-17 at 04:23:09ID: 24405774
After debugging I found that the above code is working fine. The JNDI is getting correctly mapped to the datasource. The datasource object is of type com.ibm.ws.rsadapter.jdbc. wsjdbcdata source. But when the getConnection() is called it's giving error from Database side.
IO Exception opening socket to server USMUMVSALVI2 on port 50000. The DB2 Server may be down.