Skip to content
Snippets Groups Projects
Commit 51610855 authored by brinn's avatar brinn
Browse files

change: improve error reporting by throwing better exceptions

SVN: 773
parent 73e86d71
No related branches found
No related tags found
No related merge requests found
......@@ -24,6 +24,7 @@ import org.apache.commons.dbcp.BasicDataSource;
import org.springframework.jdbc.support.lob.LobHandler;
import ch.systemsx.cisd.common.db.ISequencerScriptProvider;
import ch.systemsx.cisd.common.exceptions.ConfigurationFailureException;
/**
* Configuration context for database operations.
......@@ -77,8 +78,23 @@ public class DatabaseConfigurationContext
private final DataSource createDataSource()
{
final BasicDataSource myDataSource = new BasicDataSource();
myDataSource.setDriverClassName(getDriver());
final String url = MessageFormat.format(getUrlTemplate(), getDatabaseName());
final String dsDriver = getDriver();
if (dsDriver == null)
{
throw new ConfigurationFailureException("No db driver defined.");
}
final String dsUrlTemplate = getUrlTemplate();
if (dsUrlTemplate == null)
{
throw new ConfigurationFailureException("No db url template defined.");
}
final String dsDatabaseName = getDatabaseName();
if (dsDatabaseName == null)
{
throw new ConfigurationFailureException("No db name defined.");
}
myDataSource.setDriverClassName(dsDriver);
final String url = MessageFormat.format(dsUrlTemplate, dsDatabaseName);
myDataSource.setUrl(url);
myDataSource.setUsername(owner);
myDataSource.setPassword("");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment