是否可以做与此相同的行为:
protected void onBind(HttpServletRequest request, Object command, BindException bindException) throws Exception {
Invoice invoice = (Invoice) command;
invoice.getLineItems().removeAll(Collections.singletonList(null));
}
使用注释时?我正在使用 @controller 注释,所以我没有 onBind 函数。我想操作一个元素列表(从列表中删除项目)。