DATALDAP-2- Support repositoryBaseClass and considerNestedRepositories in @EnableLdapRepositories annotation.

We now support nested repository interfaces and customization via EnableLdapRepositories.repositoryBaseClass.

  @Configuration
  @EnableLdapRepositories(considerNestedRepositories = true, repositoryBaseClass = CustomizedLdapRepository.class)
  public class Config {
    // …
  }
This commit is contained in:
Mark Paluch
2016-12-06 11:11:49 +01:00
parent ba9f653c95
commit 1e35b624b7
3 changed files with 122 additions and 33 deletions

View File

@@ -0,0 +1,77 @@
/*
* Copyright 2016 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.data.ldap.repository.config;
import static org.assertj.core.api.Assertions.*;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.ImportResource;
import org.springframework.data.ldap.config.DummyEntity;
import org.springframework.data.ldap.repository.LdapRepository;
import org.springframework.data.ldap.repository.support.SimpleLdapRepository;
import org.springframework.data.repository.NoRepositoryBean;
import org.springframework.ldap.core.LdapOperations;
import org.springframework.ldap.odm.core.ObjectDirectoryMapper;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringRunner;
/**
* Unit tests for {@link EnableLdapRepositories#repositoryBaseClass()}.
*
* @author Mark Paluch
*/
@RunWith(SpringRunner.class)
@ContextConfiguration(classes = CustomRepositoryBaseClassTests.Config.class)
public class CustomRepositoryBaseClassTests {
@Autowired ApplicationContext applicationContext;
@Test // DATALDAP-2
public void shouldImplementCustomizedRepository() {
CustomizedDummyRepository repository = applicationContext.getBean(CustomizedDummyRepository.class);
assertThat(repository.returnOne()).isEqualTo(1);
}
@Configuration
@ImportResource("classpath:/infrastructure.xml")
@EnableLdapRepositories(considerNestedRepositories = true, repositoryBaseClass = CustomizedLdapRepositoryImpl.class)
static class Config {}
interface CustomizedDummyRepository extends CustomizedLdapRepository<DummyEntity> {}
@NoRepositoryBean
interface CustomizedLdapRepository<T> extends LdapRepository<T> {
int returnOne();
}
static class CustomizedLdapRepositoryImpl<T> extends SimpleLdapRepository<T> implements CustomizedLdapRepository<T> {
public CustomizedLdapRepositoryImpl(LdapOperations ldapOperations, ObjectDirectoryMapper odm, Class<T> clazz) {
super(ldapOperations, odm, clazz);
}
@Override
public int returnOne() {
return 1;
}
}
}