Uses of Class
io.ebean.FetchConfig

Packages that use FetchConfig
Package
Description
Core API (see Database, DB and Query).
  • Uses of FetchConfig in io.ebean

    Methods in io.ebean that return FetchConfig
    Modifier and Type
    Method
    Description
    FetchConfig.ofCache()
    Return FetchConfig to eagerly fetch the relationship using L2 cache.
    FetchConfig.ofDefault()
    Return FetchConfig to fetch the relationship using SQL join.
    FetchConfig.ofLazy()
    Return FetchConfig to lazily load the relationship.
    FetchConfig.ofLazy(int batchSize)
    Return FetchConfig to lazily load the relationship specifying the batch size.
    FetchConfig.ofQuery()
    Return FetchConfig to eagerly fetch the relationship using a secondary query.
    FetchConfig.ofQuery(int batchSize)
    Return FetchConfig to eagerly fetch the relationship using a secondary with a given batch size.
    Methods in io.ebean with parameters of type FetchConfig
    Modifier and Type
    Method
    Description
    Query.fetch(String path, FetchConfig fetchConfig)
    Additionally specify a JoinConfig to specify a "query join" and or define the lazy loading query.
    Query.fetch(String path, String fetchProperties, FetchConfig fetchConfig)
    Additionally specify a FetchConfig to use a separate query or lazy loading to load this path.