Skip to content

Instantly share code, notes, and snippets.

@mkheck
Created February 1, 2016 16:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mkheck/3fcb08c578abc25f73a3 to your computer and use it in GitHub Desktop.
Save mkheck/3fcb08c578abc25f73a3 to your computer and use it in GitHub Desktop.
package org.thehecklers;
import org.springframework.data.repository.CrudRepository;
import org.springframework.data.rest.core.annotation.RepositoryRestResource;
@RepositoryRestResource
public interface ReadingRepository extends CrudRepository<Reading, Long> {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment