我在看那篇文章https://www.baeldung.com/jpa-persisting-enums-in-jpa 在数据库中保存枚举代码。
我有转换器,我看到保存在数据库中的代码,但我正在寻找vo/dto来返回代码。我该怎么做?
Enum Category
{
BLUE("Blue")
...
}
@Entity
class Color {
Category category;
Stage stage;
}
//VO
class ColorVO {
Category category;
Stage stage;
}
//INPUT
{
"category": "BLUE",
"stage": "STAGE2"
}
//EXPECTED OUTPUT
{
"category": "Blue",
"stage": "STAGE2"
}
1条答案
按热度按时间falq053o1#
应该有谷歌更多-jsonvalue在枚举将解决!
}