use of com.j256.ormlite.db.H2DatabaseType in project nutch by apache.
the class SpringConfiguration method getConnectionSource.
@Bean
public JdbcConnectionSource getConnectionSource() throws SQLException {
JdbcConnectionSource source = new JdbcConnectionSource("jdbc:h2:~/.nutch/config", new H2DatabaseType());
source.initialize();
return source;
}
Aggregations