Java Beanを持っています。ここで、フィールドが一意であることを確認したいと思います。
次のコードを使用しています。
@UniqueConstraint(columnNames={"username"})
public String username;
しかし、私はいくつかのエラーを得ています:
@UniqueConstraint is dissallowed for this location
一意の制約を使用する適切な方法は何ですか?
注:私はplayフレームワークを使用しています。