BAEL - 2829
Fixed the compilation error
This commit is contained in:
+2
-2
@@ -2,8 +2,8 @@ package com.baeldung.dao.repositories;
|
||||
|
||||
import org.springframework.data.jpa.repository.JpaRepository;
|
||||
|
||||
import com.baeldung.domain.Person;
|
||||
import com.baeldung.domain.Employee;
|
||||
|
||||
public interface PersonRepository extends JpaRepository<Person, Long> {
|
||||
public interface EmployeeRepository extends JpaRepository<Employee, Long> {
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user