Aggregate strategy
The aggregate strategy defines how to construct an entity aggregate from an arbitrary SELECT statement. It provides a structured way to map relational query results into hierarchical entity structures by specifying how entities should be linked together.
Aggregate strategy definition
An aggregate strategy is represented by annotating an interface with @AggregateStrategy
.
This annotation is used to define how an entity aggregate is reconstructed from a query result.
@AggregateStrategy(root = Department.class, tableAlias = "d")
interface DepartmentAggregateStrategy {
...
}
The
root
element specifies the entity class that serves as the root of the aggregate.The
tableAlias
element specifies the alias for the table corresponding to the root entity class. This alias must be used in the SELECT statement to correctly map query results to entity properties.
Association linker definition
An aggregate strategy must contain at least one field of type BiFunction
annotated with @AssociationLinker
.
The BiFunction
is responsible for dynamically associating two entity instances.
@AggregateStrategy(root = Department.class, tableAlias = "d")
interface DepartmentAggregateStrategy {
@AssociationLinker(propertyPath = "employees", tableAlias = "e")
BiFunction<Department, Employee, Department> employees =
(d, e) -> {
d.getEmployees().add(e);
e.setDepartment(d);
return d;
};
@AssociationLinker(propertyPath = "employees.address", tableAlias = "a")
BiFunction<Employee, Address, Employee> address =
(e, a) -> {
e.setAddress(a);
return e;
};
}
The first and third type parameters of
BiFunction
represent the class that owns the property, while the second type parameter represents the property type.The
propertyPath
element specifies the target property’s name as a dot-separated path from the root entity class.The
tableAlias
element specifies the alias for the table corresponding to the entity class used as the second type parameter ofBiFunction
. This alias must be used in the SELECT statement.
Example
The DepartmentAggregateStrategy
described above is based on the following entity definitions:
@Entity(naming = NamingType.SNAKE_LOWER_CASE)
public class Department {
@Id Integer id;
String name;
@Association List<Employee> employees = new ArrayList<>();
// getter, setter
}
@Entity(naming = NamingType.SNAKE_LOWER_CASE)
public class Employee {
@Id Integer id;
String name;
Integer departmentId;
Integer addressId;
@Association Department department;
@Association Address address;
// getter, setter
}
@Entity(naming = NamingType.SNAKE_LOWER_CASE)
public class Address {
@Id Integer id;
String street;
// getter, setter
}
In entity classes, association properties must be annotated with @Association
.
These properties can be linked using @AssociationLinker
.
Using an aggregate strategy
DepartmentAggregateStrategy
is used by specifying it in the aggregateStrategy
element of @Select
:
@Dao
interface DepartmentDao {
@Select(aggregateStrategy = DepartmentAggregateStrategy.class)
Department selectById(Integer id);
}
For the selectById
method, the following SELECT statement is required:
select
d.id as d_id,
d.name as d_name,
a.id as a_id,
a.street as a_street,
e.id as e_id,
e.name as e_name,
e.department_id as e_department_id,
e.address_id as e_address_id
from
department d
left outer join
employee e on (d.id = e.department_id)
left outer join
address a on (e.address_id = a.id)
where
d.id = /* id */0
Note
The SELECT list must include the IDs of all entities that form the aggregate.
Column aliasing rules
The table aliases must match those defined in
DepartmentAggregateStrategy
.Column aliases must be prefixed with the table alias followed by an underscore (
_
). For example,d.id
is aliased asd_id
ande.id
ase_id
.
Using the expansion directive
By using the expansion directive, the above SELECT statement can be written more concisely:
select
/*%expand*/*
from
department d
left outer join
employee e on (d.id = e.department_id)
left outer join
address a on (e.address_id = a.id)
where
d.id = /* id */0
How expansion works
The
/*%expand */*
directive automatically expands into a column list using predefined aliasing rules.By default, all columns from all tables are included in the result set.
To selectively expand only specific tables, pass a comma-separated list of table aliases:
select
/*%expand "e, d" */*,
a.id as a_id,
a.street as a_street
from
department d
left outer join
employee e on (d.id = e.department_id)
left outer join
address a on (e.address_id = a.id)
where
d.id = /* id */0
Here, only columns from tables
e
(employee
) andd
(department
) are expanded.The columns from table
a
(address
) are explicitly specified.