Skip to content
Snippets Groups Projects
UserRepository.java 342 B
Newer Older
  • Learn to ignore specific revisions
  • package com.example.accessingdatamysql;
    
    
    import org.springframework.data.repository.CrudRepository;
    
    import com.example.accessingdatamysql.User;
    
    // This will be AUTO IMPLEMENTED by Spring into a Bean called userRepository
    // CRUD refers Create, Read, Update, Delete
    
    
    public interface UserRepository extends CrudRepository<User, String> {