lodsve.mongodb.repository.LodsveMongoRepositoryConfigurationExtension Maven / Gradle / Ivy
/*
* Copyright (C) 2018 Sun.Hao
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
package lodsve.mongodb.repository;
import org.springframework.beans.factory.support.BeanDefinitionBuilder;
import org.springframework.beans.factory.support.BeanDefinitionRegistry;
import org.springframework.data.mongodb.repository.config.MongoRepositoryConfigurationExtension;
import org.springframework.data.repository.config.AnnotationRepositoryConfigurationSource;
import org.springframework.data.repository.config.RepositoryConfigurationSource;
/**
* Lodsve custom MongoRepositoryConfigurationExtension.
*
* @author sunhao([email protected])
* @date 2017-12-11-0011 14:24
*/
public class LodsveMongoRepositoryConfigurationExtension extends MongoRepositoryConfigurationExtension {
private String mongoTemplateId;
public LodsveMongoRepositoryConfigurationExtension(String mongoTemplateId) {
super();
this.mongoTemplateId = mongoTemplateId;
}
@Override
public void postProcess(BeanDefinitionBuilder builder, AnnotationRepositoryConfigurationSource config) {
builder.addPropertyReference("mongoOperations", mongoTemplateId);
builder.addPropertyValue("createIndexesForQueryMethods", false);
}
@Override
public void registerBeansForRoot(BeanDefinitionRegistry registry, RepositoryConfigurationSource configurationSource) {
super.registerBeansForRoot(registry, configurationSource);
}
}