Interface JdbcRepository


public interface JdbcRepository
Русский: Интерфейс для наследования который указывает что наследник является именно реализация JDBC репозитория.
English: An interface for inheritance that specifies that the inheritor is specifically an implementation of the JDBC repository.

Пример / Example:
 
 @Repository
 public interface MyRepository extends JdbcRepository {

 }
 
 
See Also:
  • Repository