Interface QueryContextBuilder


@Deprecated public interface QueryContextBuilder
Deprecated.
See the deprecation note on QueryBuilder.
Query builder that needs contextualization: A query builder should know which entity or analyzer it relies on. QueryBuilder builder = searchFactory.buildQueryBuilder() .forEntity(Customer.class) .overridesForField("profession", "acronym-analyzer") .get(); overridesForField is optional (and usually not needed). This method overrides the underlying analyzer (for a given field) used to build queries.
Author:
Emmanuel Bernard
  • Method Summary

    Modifier and Type
    Method
    Description
    forEntity(Class<?> entityType)
    Deprecated.
    Creates an entity context which can be used to obtain a QueryBuilder.
  • Method Details

    • forEntity

      EntityContext forEntity(Class<?> entityType)
      Deprecated.
      Creates an entity context which can be used to obtain a QueryBuilder.

      Note that the passed entity type is used to verify field names, transparently apply analyzers and field bridges etc. The query result list, however, is not automatically restricted to the given type. Instead a type filter must be applied when creating the full text query in order to restrict the query result to certain entity types.

      Parameters:
      entityType - entity type used for meta data retrieval during query creation
      Returns:
      an entity context