I have seen some posts talking about NamingStrategy but it is not exacting what I am looking for (or I don't know to to approach it).
I need, depending on some conditions, to change the name of the @Table in the @Entity class passing an ID, something like this:
@Entity
@Table(name = "SA1{companyID}")
public class Cliente implements Serializable, Cloneable {
That "companyID" will something like: 010, 020, 030
Is there any whay to achieve that?