我的要求是创建一组动态字段,以便可以将它们包含在哈希图中以进一步处理请求的平稳性。如link中的建议:
MyBean:
type: object
additionalProperties: true
生成的代码是equals
,hashCode
和toString
方法,这些方法未填充任何类型的字段。
public class MyBean {
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
return true;
}
@Override
public int hashCode() {
return Objects.hash();
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class MyBean {\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
将包含动态输入吗? 我如何为此目的创建哈希图?
答案 0 :(得分:0)
我使用:
修复了它MyBean:
type: object
additionalProperties:
type: object
由我的班级扩展的HashMap<String, Object>
。在link找到了引用。