PersonRepository.java 344B

123456789101112
  1. package com.example.throwupthursday;
  2. import org.springframework.data.repository.CrudRepository;
  3. import com.example.throwupthursday.daos.Person;
  4. // This will be AUTO IMPLEMENTED by Spring into a Bean called userRepository
  5. // CRUD refers Create, Read, Update, Delete
  6. public interface PersonRepository extends CrudRepository<Person, Long> {
  7. }