Java EE 5 SDK

javax.persistence
Annotation Type SecondaryTables


@Target(value=TYPE)
@Retention(value=RUNTIME)
public @interface SecondaryTables

This annotation is used to specify multiple secondary tables for an entity.

    Example 1: Multiple secondary tables assuming primary key columns are named the same in all tables.

    @Entity
    @Table(name="EMPLOYEE")
    @SecondaryTables({
        @SecondaryTable(name="EMP_DETAIL"),
        @SecondaryTable(name="EMP_HIST")
    })
    public class Employee { ... }
    
    Example 2: Multiple secondary tables with differently named primary key columns. 

    @Entity
    @Table(name="EMPLOYEE")
    @SecondaryTables({
        @SecondaryTable(name="EMP_DETAIL", 
            pkJoinColumns=@PrimaryKeyJoinColumn(name="EMPL_ID")),
        @SecondaryTable(name="EMP_HIST", 
            pkJoinColumns=@PrimaryKeyJoinColumn(name="EMPLOYEE_ID"))
    })
    public class Employee { ... }
 

Since:
Java Persistence 1.0

Required Element Summary
 SecondaryTable[] value
          The secondary tables for an entity.
 

Element Detail

value

public abstract SecondaryTable[] value
The secondary tables for an entity.


Java EE 5 SDK

Copyright 2006 Sun Microsystems, Inc. All rights reserved.

This documentation is deprecated and will be removed in the next release of WebLogic Server.


Oracle Fusion Middleware Sun Microsystems Persistence API Reference (DEPRECATED)
12c Release 1 (12.1.1)
Part Number E24399_01