Skip to content
Snippets Groups Projects
ReqRepository.java 347 B
Newer Older
package com.example.accessingdatamysql;


import org.springframework.data.repository.CrudRepository;

import com.example.accessingdatamysql.Request;

// This will be AUTO IMPLEMENTED by Spring into a Bean called userRepository
// CRUD refers Create, Read, Update, Delete

public interface ReqRepository extends CrudRepository<Request, String> {

}