Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "EclipseLink/UserGuide/JPA/Basic JPA Development/Mapping/Additional Criteria"

m
 
(14 intermediate revisions by 2 users not shown)
Line 7: Line 7:
 
|apis=
 
|apis=
 
*[http://www.eclipse.org/eclipselink/api/latest/org/eclipse/persistence/annotations/AdditionalCriteria.html @AdditionalCriteria]
 
*[http://www.eclipse.org/eclipselink/api/latest/org/eclipse/persistence/annotations/AdditionalCriteria.html @AdditionalCriteria]
 +
|nativeapi=y
 +
|nativeapis=
 +
*[http://www.eclipse.org/eclipselink/api/latest//org/eclipse/persistence/descriptors/DescriptorQueryManager.html DescriptorQueryManager]
 
*[http://www.eclipse.org/eclipselink/api/latest///org/eclipse/persistence/expressions/Expression.html Expression]
 
*[http://www.eclipse.org/eclipselink/api/latest///org/eclipse/persistence/expressions/Expression.html Expression]
 
}}
 
}}
Line 21: Line 24:
 
  <td>'''<tt>value</tt>'''</td>
 
  <td>'''<tt>value</tt>'''</td>
 
  <td>The JPQL fragment to use as the additional criteria.</td>
 
  <td>The JPQL fragment to use as the additional criteria.</td>
  <td>n/a</td>
+
  <td></td>
 
  <td>Yes</td>
 
  <td>Yes</td>
 
</tr>
 
</tr>
Line 29: Line 32:
 
==Defining Additional Criteria==
 
==Defining Additional Criteria==
  
Set additional criteria parameters through properties on the entity manager factory or on the entity manager. When set on the entity manager, you must set the properties before executing a query. Do not change the properties for the lifespan of that entity manager. Properties set on the entity manager override identically named properties set on the entity manager factory.
+
Set additional criteria parameters through properties on the entity manager factory or on the entity manager. Properties set on the entity manager override identically named properties set on the entity manager factory. Properties must be set on an entity manager before executing a query. Do not change the properties for the lifespan of the entity manager.  
  
 
Additional criteria are not supported with native queries.
 
Additional criteria are not supported with native queries.
Line 65: Line 68:
 
<additional-criteria>
 
<additional-criteria>
 
   <criteria>this.address.city IS NOT NULL</criteria>
 
   <criteria>this.address.city IS NOT NULL</criteria>
</additional-criteria&>
+
</additional-criteria>
 
</source>
 
</source>
  
Line 72: Line 75:
 
*[[#Multitenancy Example|Multitenancy]]
 
*[[#Multitenancy Example|Multitenancy]]
 
*[[#Soft Delete Example|Soft deletes]]
 
*[[#Soft Delete Example|Soft deletes]]
*[[#History Example|History]]
+
*[[#History Example|Data history]]
 +
*[[#Temporal Filtering Example|Temporal filtering]]
 
*[[#Shared Table Example|Shared tables]]
 
*[[#Shared Table Example|Shared tables]]
  
 
====Multitenancy Example====
 
====Multitenancy Example====
  
In a multitenancy environment, tenants (users, clients, organizations, applications) can share database tables, but the views on the data must be restricted so that tenants have access only to their own data. You can use <tt>AdditionalCriteria</tt> to thus restrict views on the dataFor example,
+
In a multitenancy environment, tenants (users, clients, organizations, applications) can share database tables, but the views on the data are restricted so that tenants have access only to their own data. You can use additional criteria to configure such restrictions.   
  
* Use <tt>@AdditionalCriteria("TENANT = 'Billing'")</tt> to restrict the data for a “Billing” client, such as a billing application or billing organization.
+
=====Multitenancy Example 1 =====
  
* You could use <tt>@AdditionalCriteria("this.tenant = :tenant")</tt> for an application that can be used by multiple different tenants at the same time. When the tenant acquires its <tt>EntityManagerFactory</tt> or <tt>EntityManager</tt> the persistence/entity manager property <tt>tenant</tt> is set to the name of the tenant acquring it.  
+
The following example restricts the data for a “Billing” client, such as a billing application or billing organization:
 +
<source lang="java">
 +
@AdditionalCriteria("this.tenant = 'Billing'")
 +
</source>
 +
 
 +
=====Multitenancy Example 2 =====
 +
 
 +
The following example could be used in an application used by multiple tenants at the same time. The additional criteria is defined as:
 +
 
 +
<source lang="java">
 +
@AdditionalCriteria("this.tenant = :tenant")
 +
</source>
 +
 
 +
When the tenant acquires its <tt>EntityManagerFactory</tt> or <tt>EntityManager</tt>, the persistence/entity manager property <tt>tenant</tt> is set to the name of the tenant acquiring it. For example,
  
 
<source lang="java">
 
<source lang="java">
Line 89: Line 106:
 
</source>
 
</source>
  
or,
+
or
  
 
<source lang="java">
 
<source lang="java">
Line 99: Line 116:
 
====Soft Delete Example====
 
====Soft Delete Example====
  
A soft delete is when data is marked as deleted, but it is not actually deleted from the database. This can be useful for keeping a record of deleted data. The following example filters deleted data from a query:
+
The following example filters data that is marked as deleted (but which still exists in the table) from a query:
  
 
<source lang="java">
 
<source lang="java">
Line 105: Line 122:
 
</source>
 
</source>
  
====History Example====
+
====Data History Example====
 
<!--We have specific history support, but if the user just wants something simpler or more generic they can use criteria. -->
 
<!--We have specific history support, but if the user just wants something simpler or more generic they can use criteria. -->
  
History is when a row of data is never removed or updated. On an update, a new row is inserted with a new start and end time instead. The following example returns the current data from any query.
+
The following example returns the current data from a query, thus filtering out any out-of-date data, for example data stored in a history table.
  
 
<source lang="java">
 
<source lang="java">
 
@AdditionalCriteria("this.endDate is null")
 
@AdditionalCriteria("this.endDate is null")
 
</source>  
 
</source>  
 +
 +
Note: EclipseLink also provides specific history support, via [http://www.eclipse.org/eclipselink/api/latest/org/eclipse/persistence/history/HistoryPolicy.html <tt>HistoryPolicy</tt> ]. See [http://wiki.eclipse.org/EclipseLink/Examples/JPA/History Tracking Changes Using History Policy].
 +
 +
====Temporal Filtering Example====
  
 
The following example filters on a specific date:
 
The following example filters on a specific date:
Line 123: Line 144:
  
 
For a shared table, there may be inheritance in the table but not in the object model.  
 
For a shared table, there may be inheritance in the table but not in the object model.  
For example, a <tt>SavingsAccount</tt> class may be mapped to an ACCOUNT table, but the ACCOUNT table contains both savings account data (SAVINGS) and checking account (CHECKING) data. The following example filters the checking data.  
+
For example, a <tt>SavingsAccount</tt> class may be mapped to an ACCOUNT table, but the ACCOUNT table contains both savings account data (SAVINGS) and checking account (CHECKING) data. You can use additional criteria to filter out the checking account data.  
  
 
<!--
 
<!--

Latest revision as of 13:51, 14 June 2011

EclipseLink JPA

Eclipselink-logo.gif
EclipseLink
Website
Download
Community
Mailing ListForumsIRCmattermost
Issues
OpenHelp WantedBug Day
Contribute
Browse Source


@AdditionalCriteria

Use @AdditionalCriteria to define parameterized views on data. You can define additional criteria on entities or mapped superclasses. When specified at the mapped superclass level, the additional criteria definition applies to all inheriting entities, unless those entities define their own additional criteria, in which case those defined for the mapped superclass are ignored.

Additional criteria can provide an additional filtering mechanism for queries. This filtering option, for example, allows you to use an existing additional JOIN expression defined for the entity or mapped superclass and allows you to pass parameters to it.

@AdditionalCriteria Attributes
Attribute Description Default Required?
value The JPQL fragment to use as the additional criteria. Yes


Defining Additional Criteria

Set additional criteria parameters through properties on the entity manager factory or on the entity manager. Properties set on the entity manager override identically named properties set on the entity manager factory. Properties must be set on an entity manager before executing a query. Do not change the properties for the lifespan of the entity manager.

Additional criteria are not supported with native queries.

Specify additional criteria using the @AdditionalCriteria annotation or the <additional-criteria> element. The additional criteria definition supports any valid JPQL string and must use this as an alias to form the additional criteria. For example,

@AdditionalCriteria("this.address.city IS NOT NULL")

The following example shows additional criteria defined for the entity Employee and then shows the parameters for the additional criteria set on the entity manager.

Define additional criteria on Employee, as follows,...

package model;
 
@AdditionalCriteria("this.company=:COMPANY")
public class Employee {
  ...
}

...then set the property on the EntityManager. This example returns all employees of MyCompany.

entityManager.setProperty("COMPANY", "MyCompany");


The following example shows the <additional-criteria> element used in the eclipselink-orm.xml descriptor:

Example: additional-criteria Element
<additional-criteria>
  <criteria>this.address.city IS NOT NULL</criteria>
</additional-criteria>

Uses for Additional Criteria

Uses for additional criteria include:

Multitenancy Example

In a multitenancy environment, tenants (users, clients, organizations, applications) can share database tables, but the views on the data are restricted so that tenants have access only to their own data. You can use additional criteria to configure such restrictions.

Multitenancy Example 1

The following example restricts the data for a “Billing” client, such as a billing application or billing organization:

@AdditionalCriteria("this.tenant = 'Billing'")
Multitenancy Example 2

The following example could be used in an application used by multiple tenants at the same time. The additional criteria is defined as:

@AdditionalCriteria("this.tenant = :tenant")

When the tenant acquires its EntityManagerFactory or EntityManager, the persistence/entity manager property tenant is set to the name of the tenant acquiring it. For example,

Map properties = new HashMap();
properties.put("tenant", "ACME");
EntityManagerFactory emf = Persistence.createEntityManagerFactory(properties);

or

Map properties = new HashMap();
properties.put("tenant", "ACME");
EntityManager em = factory.createEntityManager(properties);

Soft Delete Example

The following example filters data that is marked as deleted (but which still exists in the table) from a query:

@AdditionalCriteria("this.isDeleted = false")

Data History Example

The following example returns the current data from a query, thus filtering out any out-of-date data, for example data stored in a history table.

@AdditionalCriteria("this.endDate is null")

Note: EclipseLink also provides specific history support, via HistoryPolicy . See Tracking Changes Using History Policy.

Temporal Filtering Example

The following example filters on a specific date:

@AdditionalCriteria("this.startDate <= :viewDate and this.endDate >= :viewDate")

Shared Table Example

For a shared table, there may be inheritance in the table but not in the object model. For example, a SavingsAccount class may be mapped to an ACCOUNT table, but the ACCOUNT table contains both savings account data (SAVINGS) and checking account (CHECKING) data. You can use additional criteria to filter out the checking account data.


Eclipselink-logo.gif
Version: 2.2.0 DRAFT
Other versions...

Back to the top