Package org.springframework.data.solr.core.query

Examples of org.springframework.data.solr.core.query.HighlightOptions.addFields()


  }

  private HighlightOptions extractHighlightOptions(SolrQueryMethod queryMethod, SolrParameterAccessor accessor) {
    HighlightOptions options = new HighlightOptions();
    if (queryMethod.hasHighlightFields()) {
      options.addFields(queryMethod.getHighlightFieldNames());
    }
    Integer fragsize = queryMethod.getHighlightFragsize();
    if (fragsize != null) {
      options.setFragsize(fragsize);
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.