Last active
February 18, 2022 10:48
-
-
Save maneeshaindrachapa/7cff46d5fa9eb49330c7f5a99947d2ab to your computer and use it in GitHub Desktop.
TourRepository - Tour California Application
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.explore.california.repository; | |
import com.explore.california.model.Tour; | |
import org.springframework.data.repository.CrudRepository; | |
import org.springframework.data.rest.core.annotation.RepositoryRestResource; | |
import org.springframework.stereotype.Repository; | |
@RepositoryRestResource | |
@Repository | |
public interface TourRepository extends CrudRepository<Tour, Integer> { | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment