Class PartTreeJdbcQuery

java.lang.Object
org.springframework.data.jdbc.repository.query.AbstractJdbcQuery
org.springframework.data.jdbc.repository.query.PartTreeJdbcQuery
All Implemented Interfaces:
RepositoryQuery

public class PartTreeJdbcQuery extends AbstractJdbcQuery
An AbstractJdbcQuery implementation based on a PartTree.
Since:
2.0
Author:
Mark Paluch, Jens Schauder, Diego Krupitza, Mikhail Polivakha, Yunyoung LEE, Nikita Konev
  • Constructor Details

    • PartTreeJdbcQuery

      public PartTreeJdbcQuery(org.springframework.data.relational.core.mapping.RelationalMappingContext context, JdbcQueryMethod queryMethod, org.springframework.data.relational.core.dialect.Dialect dialect, JdbcConverter converter, NamedParameterJdbcOperations operations, RowMapper<Object> rowMapper)
      Creates a new PartTreeJdbcQuery.
      Parameters:
      context - must not be null.
      queryMethod - must not be null.
      dialect - must not be null.
      converter - must not be null.
      operations - must not be null.
      rowMapper - must not be null.
    • PartTreeJdbcQuery

      public PartTreeJdbcQuery(org.springframework.data.relational.core.mapping.RelationalMappingContext context, JdbcQueryMethod queryMethod, org.springframework.data.relational.core.dialect.Dialect dialect, JdbcConverter converter, NamedParameterJdbcOperations operations, AbstractJdbcQuery.RowMapperFactory rowMapperFactory)
      Creates a new PartTreeJdbcQuery.
      Parameters:
      context - must not be null.
      queryMethod - must not be null.
      dialect - must not be null.
      converter - must not be null.
      operations - must not be null.
      rowMapperFactory - must not be null.
      Since:
      2.3
  • Method Details