Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我编写了一个 wicket 应用程序来根据给定的输入过滤记录。我得到错误
试图在空对象上设置属性值。属性表达式:code 值:ad
其中,代码是字段的名称,广告是输入要过滤的值。
biziclop 的答案,它是 Wicket Model NullPointer。像 PropertyModel 或 CompoundPropertyModel 这样的 Wicekt 模型使用 javabean getter/setter 表示法,例如“customer.address.street.name”。因此,如果您将“客户”对象中的地址值设置为 null,并且 wicket 会尝试从文本字段中设置“street.name”,您将收到此异常。