| package com.lm.repository; | |
| import com.lm.model.Task; | |
| import org.springframework.data.repository.PagingAndSortingRepository; | |
| import org.springframework.data.rest.core.annotation.RepositoryRestResource; | |
| import java.util.UUID; | |
| @RepositoryRestResource( collectionResourceRel = "task", path = "task") | |
| public interface Tasks extends PagingAndSortingRepository<Task, UUID> { | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment