Advertisement
Guest User

Untitled

a guest
Jan 21st, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. package com.arthurportas.mongodb.example.repository;
  2.  
  3. import com.arthurportas.mongodb.example.domain.User;
  4. import org.springframework.data.mongodb.repository.MongoRepository;
  5. import org.springframework.stereotype.Repository;
  6.  
  7. /**
  8. * Created by arthurportas on 21/01/2017.
  9. */
  10. @Repository
  11. public interface UserRepository extends MongoRepository<User, String>{
  12.  
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement