EJB 3: Dynamic Element Values
Hi all,
I'm fairly new to EJB3 and I'm wondering whether it is possible to dynamically assign annotation element values like this:
@Entity
@Table(name=myClass.getTableName())
publicclass Employee{
...
}
If not, what else can I do to use the same entity class and respective service class for different tables, which all have the same fields?
Thanks in advance.
Stephan

