de.bwaldvogel.mongo.repository.PersonRepository Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mongo-java-server-test-common Show documentation
Show all versions of mongo-java-server-test-common Show documentation
Fake implementation of MongoDB in Java that speaks the wire protocol
package de.bwaldvogel.mongo.repository;
import org.bson.types.ObjectId;
import org.springframework.data.repository.PagingAndSortingRepository;
import de.bwaldvogel.mongo.entity.Person;
public interface PersonRepository extends PagingAndSortingRepository {
Person findOneByName(String name);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy