It extends JpaRepository with two generic parameters: VideoEntity and Long (the domain type and the primary key type)
JpaRepository, a Spring Data JPA interface, contains a set of already supported Change Replace Update Delete (CRUD) operations
xxxxxxxxxx
public interface VideoRepository extends JpaRepository
<VideoEntity, Long> {
}