org.komamitsu.spring.data.sqlite.SqliteRepositoryConfigurationExtension Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-data-sqlite Show documentation
Show all versions of spring-data-sqlite Show documentation
Spring Data integration with SQLite
The newest version!
package org.komamitsu.spring.data.sqlite;
import org.springframework.data.jdbc.repository.config.JdbcRepositoryConfigExtension;
/**
* {@link JdbcRepositoryConfigExtension} extending the repository registration process by
* registering SQLite repositories.
*/
public class SqliteRepositoryConfigurationExtension extends JdbcRepositoryConfigExtension {
@Override
protected String getModulePrefix() {
return "sqlite";
}
@Override
public String getRepositoryFactoryBeanClassName() {
return SqliteJdbcRepositoryFactoryBean.class.getName();
}
}