Это моя сущность.
@Table(uniqueConstraints = { @UniqueConstraint(columnNames = { "code" } })
@Entity
public class Product extends ExtendedModel {
private static final long serialVersionUID = 8986161490957095179L;
@Column(columnDefinition = "Ürün Kodu")
private String code;
private String name;
Я хочу получить имя столбца uniq.
Я обычно использую этот метод.
columnName = myClass.getClass().getDeclaredField("code").getDeclaredAnnotation(Column.class)
.columnDefinition();
Но я хочу дать имя динамически. Как получить уникальное имя столбца?