In @Table(name = "tableName") - make "tableName" a veriable in JPA
Posted
by zengr
on Stack Overflow
See other posts from Stack Overflow
or by zengr
Published on 2010-03-15T03:42:28Z
Indexed on
2010/03/15
3:49 UTC
Read the original article
Hit count: 214
I am using JPA and I need to make the "tableName" a variable.
In a database, I have many tables, and my code needs to access the table where I specify it to read.
@Entity
@Table(name = "tableName")
public class Database implements Serializable {...............}
Any ideas?
© Stack Overflow or respective owner