我们怎样不用配置数据源呢。
关于这一点,我们可以查看osworkflow的源码:
我们可以看看os是如何实现的。
protected Connection getConnection() throws SQLException {
closeConnWhenDone = true;
return ds.getConnection();
}
String jndi = (String) props.get("datasource");
if (jndi != null) {
try {
ds = (DataSource) lookup(jndi);
if (ds == null) {
ds = (DataSource) new javax.naming.InitialContext().lookup(jndi);
}
} catch (Exception e) {
throw new StoreException("Error looking up DataSource at " + jndi, e);
}
}
closeConnWhenDone = true;
return ds.getConnection();
}
String jndi = (String) props.get("datasource");
if (jndi != null) {
try {
ds = (DataSource) lookup(jndi);
if (ds == null) {
ds = (DataSource) new javax.naming.InitialContext().lookup(jndi);
}
} catch (Exception e) {
throw new StoreException("Error looking up DataSource at " + jndi, e);
}
}
我们可以使用
driver = getInitProperty(props, "driver", "××××");
url = getInitProperty(props, "url", "××××");
uid = getInitProperty(props, "uid", "××××");
pwd=getInitProperty(props, "pwd", "××××");
我们修改这个源码
我们就可以不用配置数据源直接配置osworkflow.xml就可以了。