Skip to content

Instantly share code, notes, and snippets.

@evrentan
Created June 13, 2021 19:18
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 evrentan/a4a0cf56d7916e606a434290d2b6ea7d to your computer and use it in GitHub Desktop.
Save evrentan/a4a0cf56d7916e606a434290d2b6ea7d to your computer and use it in GitHub Desktop.
StudentRepository
package com.tan.myhateoasexample.repository;
import com.tan.myhateoasexample.entity.StudentEntity;
import org.springframework.data.mongodb.repository.MongoRepository;
import org.springframework.stereotype.Repository;
@Repository
public interface StudentRepository extends MongoRepository<StudentEntity, String> {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment