如何在百里香的视图中显示enum getter值?

时间:2016-12-05 19:43:12

标签: java enums thymeleaf

我有一个这样的枚举:

public enum UnitTypes {

LITER("l"), KILO("kg"), PIECE("pc");

private String unitType;

UnitTypes(String type) {
    this.unitType = unitType;
}

String getType() {
    return unitType;
}

}

如何在视图上显示getType方法中的单个值?

我试试这个,但它不起作用:

<td th:text="${stock.unit.getType()}"></td>

在“stock”中我有字段,这是枚举类型(“单位”)

1 个答案:

答案 0 :(得分:0)

UnitTypes(String type) {
    this.unitType = unitType;
}

此代码应为

UnitTypes(String type) {
    this.unitType = type;
}

您正在原始代码中为自己分配unitType。