Skip to content

Instantly share code, notes, and snippets.

@arthurportas
Created January 21, 2017 21:34
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 arthurportas/ce707c1ae0a92e5ee12d18a11047c7ad to your computer and use it in GitHub Desktop.
Save arthurportas/ce707c1ae0a92e5ee12d18a11047c7ad to your computer and use it in GitHub Desktop.
User document Spring-data-mongodb repository
package com.arthurportas.mongodb.example.repository;
import com.arthurportas.mongodb.example.domain.User;
import org.springframework.data.mongodb.repository.MongoRepository;
import org.springframework.stereotype.Repository;
/**
* Created by arthurportas on 21/01/2017.
*/
@Repository
public interface UserRepository extends MongoRepository<User, String>{
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment