Package org.hibernate.annotations
Annotation Interface Filter
Specifies that an entity or collection is affected by a named filter declared using
@FilterDef, and allows thedefault filter condition to be overridden for the annotated entity or collection role. For example, we might apply a filter namedCurrent to an entity like this:
@Entity @Filter(name = "Current", deduceAliasInjectionPoints = false, condition = "{alias}.year = extract(year from current_date)") class Course { @Id @GeneratedValue Long id; int year; ... } If an entity or collection has no@Filter annotation with the name of a given filter, it is not affected by that filter.
Required Element Summary
Required ElementsOptional Element Summary
Optional ElementsModifier and TypeOptional ElementDescriptionExplicitly specifies how aliases are interpolated into thecondition()SQL expression.The filter condition, a SQL expression used for filtering the rows returned by a query when the filter is enabled.booleanDetermines how tables aliases are interpolated into thecondition()SQL expression.
Element Details
condition
String conditionThe filter condition, a SQL expression used for filtering the rows returned by a query when the filter is enabled. If not specified, the default filter condition given byFilterDef.defaultCondition()is used.By default, aliases of filtered tables are automatically interpolated into the filter condition, before any token that looks like a column name. Occasionally, when the interpolation algorithm encounters ambiguity, the process of alias interpolation produces broken SQL. In such cases, alias interpolation may be controlled explicitly using either
deduceAliasInjectionPoints()oraliases().- Default:
- ""
deduceAliasInjectionPoints
boolean deduceAliasInjectionPointsDetermines how tables aliases are interpolated into thecondition()SQL expression.- if
true, and by default, an alias is added automatically to every column occurring in the SQL expression, but - if
false, aliases are only interpolated where an explicit placeholder of form{alias}occurs in the SQL expression. - Finally, if
explicit aliasesare specified, then alias interpolation happens only for the specified aliases.
- Default:
- true
- if
aliases
SqlFragmentAlias[] aliasesExplicitly specifies how aliases are interpolated into thecondition()SQL expression. EachSqlFragmentAliasspecifies a placeholder name and the table whose alias should be interpolated. Placeholders are of form{name}wherenamematches aSqlFragmentAlias.alias().- Default:
- {}