All Downloads are FREE. Search and download functionalities are using the official Maven repository.

lodsve.search.configs.LuceneConfiguration 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.search.configs;

import lodsve.core.properties.relaxedbind.annotations.EnableConfigurationProperties;
import lodsve.search.engine.LuceneSearchEngine;
import lodsve.search.engine.SearchEngine;
import lodsve.search.properties.LuceneConfig;
import lodsve.search.properties.SearchProperties;
import org.apache.lucene.analysis.Analyzer;
import org.springframework.beans.BeanUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Configurable;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;

/**
 * lucene配置.
 *
 * @author sunhao([email protected])
 * @date 2016/1/20 12:33
 */
@Configurable
@EnableConfigurationProperties(SearchProperties.class)
@ComponentScan("lodsve.search")
public class LuceneConfiguration {
    @Autowired
    private SearchProperties properties;

    @Bean
    public SearchEngine searchEngine() {
        LuceneConfig lucene = properties.getLucene();

        Class analyzerClass = lucene.getAnalyzer();
        Analyzer analyzer = (Analyzer) BeanUtils.instantiate(analyzerClass);

        return new LuceneSearchEngine(lucene.getIndex(), analyzer, lucene.getPrefix(), lucene.getSuffix());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy