作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想将以下实体映射转换为 Priority
对象。在 getter 上,当我将“Short”更改为“Priority”并遵循 this.priority
时,它会提示 'basic' 属性类型不应该是优先级
。我如何设置/获取此优先级?
@Column(name = "priority", nullable = false, insertable = true, updatable = true, length = 5, precision = 0)
public Short getPriority() {
return priority;
}
public void setPriority(Short priority) {
this.priority = priority;
}
我的优先级:
public class Priority {
public static final Priority TOP = new Priority("TOP", 100);
public static final Priority PRIORITY_REMAN = new Priority("PRIORITY_REMAN", 250);
public static final Priority PRIORITY = new Priority("PRIORITY", 500);
public static final Priority STANDARD_REMAN = new Priority("STANDARD_REMAN", 750);
public static final Priority STANDARD = new Priority("STANDARD", 1000);
private final String name;
private final Integer value;
public Priority() {
this.name = null;
this.value = 0;
}
protected Priority(String name, int value) {
this.name = name;
this.value = value;
}
public String getName() {
return name;
}
@JsonView({Views.ShutdownView.class})
public Integer getValue() {
return value;
}
public String toString() {
return getName();
}
}
最佳答案
您可以将 Priority
类更改为 Enum
,并将 getPriority
方法更改为如下所示:
@Enumerated
@Column(name = "priority", nullable = false, insertable = true, updatable = true, length = 5, precision = 0)
public PriorityEnum getPriority() {
return priority;
}
这样,hibernate将尝试将Priority
属性保存在数据库中,作为表示Enumeration
定义中给定值顺序的数字。因此,如果priority
属性的值为TOP,则数据库中对应的值为1
,如果为PRIORITY_REMAN
,则数据库中的值为1
2
等等。
要更改此行为,您可以将 @Enumerated
注释更改为
@Enumerated(EnumType.STRING)
在这种情况下,数据库中的相应列应该是某种String
(例如VARCHAR
或NVARCHAR
),因为hibernate会尝试将 TOP
或 PRIORITY_REMAN
的字符串值保存在数据库中。
关于java - “基本”属性类型不应优先,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18924443/
我是一名优秀的程序员,十分优秀!