Skip to content

Instantly share code, notes, and snippets.

@maneeshaindrachapa
Last active February 18, 2022 10:48
Show Gist options
  • Save maneeshaindrachapa/638b0cf86a76bf4ed18958c202eb5ae0 to your computer and use it in GitHub Desktop.
Save maneeshaindrachapa/638b0cf86a76bf4ed18958c202eb5ae0 to your computer and use it in GitHub Desktop.
TourPackageRepository - Tour California Application
package com.explore.california.repository;
import com.explore.california.model.TourPackage;
import org.springframework.data.repository.CrudRepository;
import org.springframework.data.rest.core.annotation.RepositoryRestResource;
import org.springframework.stereotype.Repository;
@RepositoryRestResource
@Repository
public interface TourPackageRepository extends CrudRepository<TourPackage, String> {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment