我有两个构造函数:正确初始化对象的普通 ctor 和用于 Hibernate 的第二个默认 ctor,它生成初始化字段警告。摆脱警告的首选方法是什么?
package test;
public class Example {
String x;
public Example(String x) {
this.x = x;
}
Example() {
// Ctor for Hibernate, warnings generated here.
}
}