i need to pass the schema name dynamically to the entity
@Entity
@Table(name = "customer_table" schema="${dynamicSchemaName}")
@JsonIgnoreProperties
public class Customer implements Serializable {
//....
}
how can i replace ${dynamicSchemaName} with the schema that will be picked by the code where this entity is called?