Class SqliteRepositoryImpl<T,ID>

java.lang.Object
org.springframework.data.jdbc.repository.support.SimpleJdbcRepository<T,ID>
org.komamitsu.spring.data.sqlite.SqliteRepositoryImpl<T,ID>
All Implemented Interfaces:
SqliteHelperRepository<T>, org.springframework.data.repository.CrudRepository<T,ID>, org.springframework.data.repository.PagingAndSortingRepository<T,ID>, org.springframework.data.repository.Repository<T,ID>

public class SqliteRepositoryImpl<T,ID> extends org.springframework.data.jdbc.repository.support.SimpleJdbcRepository<T,ID> implements SqliteHelperRepository<T>
Default implementation of CrudRepository and $SqliteHelperRepository interface in the integration of Spring Data and SQLite.
  • Constructor Summary

    Constructors
    Constructor
    Description
    SqliteRepositoryImpl(org.springframework.data.jdbc.core.JdbcAggregateOperations entityOperations, org.springframework.data.mapping.PersistentEntity<T,?> entity, org.springframework.data.jdbc.core.convert.JdbcConverter converter)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    insert(T instance)
     
    update(T instance)
     

    Methods inherited from class org.springframework.data.jdbc.repository.support.SimpleJdbcRepository

    count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findAll, findAll, findAll, findAllById, findById, save, saveAll

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • SqliteRepositoryImpl

      public SqliteRepositoryImpl(org.springframework.data.jdbc.core.JdbcAggregateOperations entityOperations, org.springframework.data.mapping.PersistentEntity<T,?> entity, org.springframework.data.jdbc.core.convert.JdbcConverter converter)
  • Method Details