use of org.springframework.data.repository.core.support.DefaultRepositoryMetadata in project spring-data-mongodb by spring-projects.
the class MongoQueryMethodUnitTests method rejectsNullMappingContext.
@Test(expected = IllegalArgumentException.class)
public void rejectsNullMappingContext() throws Exception {
Method method = PersonRepository.class.getMethod("findByFirstname", String.class, Point.class);
new MongoQueryMethod(method, new DefaultRepositoryMetadata(PersonRepository.class), new SpelAwareProxyProjectionFactory(), null);
}
use of org.springframework.data.repository.core.support.DefaultRepositoryMetadata in project spring-data-mongodb by spring-projects.
the class ReactiveMongoQueryMethodUnitTests method rejectsNullMappingContext.
// DATAMONGO-1444
@Test(expected = IllegalArgumentException.class)
public void rejectsNullMappingContext() throws Exception {
Method method = PersonRepository.class.getMethod("findByFirstname", String.class, Point.class);
new MongoQueryMethod(method, new DefaultRepositoryMetadata(PersonRepository.class), new SpelAwareProxyProjectionFactory(), null);
}
use of org.springframework.data.repository.core.support.DefaultRepositoryMetadata in project spring-data-mongodb by spring-projects.
the class ReactiveMongoQueryMethodUnitTests method queryMethod.
private ReactiveMongoQueryMethod queryMethod(Class<?> repository, String name, Class<?>... parameters) throws Exception {
Method method = repository.getMethod(name, parameters);
ProjectionFactory factory = new SpelAwareProxyProjectionFactory();
return new ReactiveMongoQueryMethod(method, new DefaultRepositoryMetadata(repository), factory, context);
}
use of org.springframework.data.repository.core.support.DefaultRepositoryMetadata in project spring-data-mongodb by spring-projects.
the class StringBasedMongoQueryUnitTests method createQueryForMethod.
private StringBasedMongoQuery createQueryForMethod(String name, Class<?>... parameters) {
try {
Method method = SampleRepository.class.getMethod(name, parameters);
ProjectionFactory factory = new SpelAwareProxyProjectionFactory();
MongoQueryMethod queryMethod = new MongoQueryMethod(method, new DefaultRepositoryMetadata(SampleRepository.class), factory, converter.getMappingContext());
return new StringBasedMongoQuery(queryMethod, operations, PARSER, DefaultEvaluationContextProvider.INSTANCE);
} catch (Exception e) {
throw new IllegalArgumentException(e.getMessage(), e);
}
}
Aggregations