从我读到的关于REST的内容:
Spring Annotations是否提供了一种简单的方法来将此检查添加到class Property < BinData::Record
endian :little
string_record :name
property_data :p_data, :onlyif => :not_none?
def not_none?
name.data != 'None\x00'
end
end
验证的内容中?
我当然可以自己编码。我只想使用尽可能多的Spring Annotation快捷方式。我正在寻找一些我可以放在模型上的注释(或其他地方,我猜)如果@Valid
对象中存在一个字段会引发错误,但不会阻止模型持久化该字段中的值。