Something went wrong on our end
-
Sarthak Shrivastava authoredSarthak Shrivastava authored
UserRepository.java 342 B
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> {
}