de.bwaldvogel.mongo.repository.TestRepository 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.springframework.data.mongodb.repository.CountQuery;
import org.springframework.data.mongodb.repository.MongoRepository;
import de.bwaldvogel.mongo.entity.TestEntity;
public interface TestRepository extends MongoRepository {
@CountQuery(value = "{'value.data': '?0'}")
int countByValueData(String data);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy