验证货币代码是否匹配一个允许的值



我有一个POJO,它包含一个名为price的字段。

字段的类型是javax.money.MonetaryAmount,因此我可以受益于JSR 354验证等。

我在字段上有一个约束,指定货币必须是EUR:

@Currency("EUR")

如何指定货币必须是EURUSD?

import org.hibernate.annotations.Columns;
import org.hibernate.annotations.Type;
import org.hibernate.annotations.TypeDef;
import org.hibernate.validator.constraints.Currency;
import org.jadira.usertype.moneyandcurrency.moneta.PersistentMoneyAmountAndCurrency;
import javax.money.MonetaryAmount;
import javax.persistence.*;
@Entity
@TypeDef(name = "persistentMoneyAmountAndCurrency", typeClass = PersistentMoneyAmountAndCurrency.class)
public class LocalizedProduct {
@Id
@GeneratedValue
private long id;
@Currency("EUR")
// @Currency("EUR, USD") .. doesn't work
@Columns(columns = {
@Column(name = "amount_currency", length = 3),
@Column(name = "amount_value", precision = 19, scale = 5)})
@Type(type = "persistentMoneyAmountAndCurrency")
private MonetaryAmount price;
public long getId() {
return this.id;
}
public void setId(long id) {
this.id = id;
}
public MonetaryAmount getPrice() {
return this.price;
}
public void setPrice(MonetaryAmount price) {
this.price = price;
}
}

注释支持String[]作为value: https://github.com/hibernate/hibernate-validator/blob/master/engine/src/main/java/org/hibernate/validator/constraints/Currency.java

尽管您可以简单地使用@Currency({"EUR", "USD"})

相关内容

最新更新