我有一个场景,我必须连接到虚拟中心并获取数据。我已经实现了一个单例类,因此两个线程不能同时访问 VC,因为它存在并发访问问题。我的代码如下:
public class Connector {
private static Connector instance ;
private Connector(String urlStr, String username, String password) {
connect(urlStr, username, password);
}
public static synchronized Connector getInstance(String urlStr, String username, String password) {
if (instance == null){
instance = new Connector(urlStr,username,password);
System.out.println("creating instance");
}
return instance ;
}
public void connect(String urlStr, String username, String password) {
ClassLoader cl = Thread.currentThread().getContextClassLoader();
try {
//code to connect to VC
}
} catch (RuntimeException e) {
connectException = e;
} finally {
Thread.currentThread().setContextClassLoader(cl);
}
}
public void disconnect() throws RuntimeFault, RemoteException {
//code for disconnect
}
}
}
我通过以下方式从另一个类中调用它:
Connector c = Connector.getInstance(dburl, dbuser, dbpass);
c.connect(dburl, dbuser, dbpass);
//code for getting data
c.disconnect();
现在,如果我有 2 个同时请求从虚拟中心获取数据,其中一个请求失败,说“会话未通过身份验证”。你能帮助我们更好地处理这个问题吗?并且由于始终使用相同的实例,如果它是不同的虚拟中心,我们如何区分。