@Target(value={TYPE,METHOD,FIELD})
@Retention(value=RUNTIME)
public @interface Partitioning
If multiple partitions are used to process a single transaction, JTA should be used for proper XA transaction support.
Partitioning can be enabled on an Entity, relationship, query, or session/persistence unit. Partition policies are globally named to allow reuse, the partitioning policy must also be set using the @Partitioned annotation to be used.
Partitioned
,
PartitioningPolicy
Modifier and Type | Required Element and Description |
---|---|
java.lang.String |
name
The name of the partition policy, names must be unique for the persistence unit.
|
java.lang.Class<? extends PartitioningPolicy> |
partitioningClass
(Required) Full package.class name of a subclass of PartitioningPolicy.
|
public abstract java.lang.String name
public abstract java.lang.Class<? extends PartitioningPolicy> partitioningClass