org.iworkz.habitat.dao.DataSourceProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of habitat Show documentation
Show all versions of habitat Show documentation
A lightweight Java library for simple database access.
package org.iworkz.habitat.dao;
import javax.inject.Inject;
import javax.inject.Singleton;
import javax.sql.DataSource;
@Singleton
public class DataSourceProvider {
@Inject
private DataSource dataSource;
public DataSource getDataSource() {
return dataSource;
}
}