我正在使用Spring 3.2.0。我已经为一些基本需求注册了一些自定义属性编辑器,如下所示。

import editors.DateTimeEditor;
import editors.StrictNumberFormatEditor;
import java.math.RoundingMode;
import java.net.URL;
import java.text.DecimalFormat;
import java.text.NumberFormat;
import org.joda.time.DateTime;
import org.springframework.beans.propertyeditors.StringTrimmerEditor;
import org.springframework.beans.propertyeditors.URLEditor;
import org.springframework.web.bind.WebDataBinder;
import org.springframework.web.bind.annotation.ControllerAdvice;
import org.springframework.web.bind.annotation.InitBinder;
import org.springframework.web.context.request.WebRequest;

@ControllerAdvice
public final class GlobalDataBinder
{
    @InitBinder
    public void initBinder(WebDataBinder binder, WebRequest request)
    {
        binder.setIgnoreInvalidFields(true);
        binder.setIgnoreUnknownFields(true);
        //binder.setAllowedFields(someArray);
        NumberFormat numberFormat=DecimalFormat.getInstance();
        numberFormat.setGroupingUsed(false);
        numberFormat.setMaximumFractionDigits(2);
        numberFormat.setRoundingMode(RoundingMode.HALF_UP);

        binder.registerCustomEditor(DateTime.class, new DateTimeEditor("MM/dd/yyyy HH:mm:ss", true));
        binder.registerCustomEditor(Double.class, new StrictNumberFormatEditor(Double.class, numberFormat, true));
        binder.registerCustomEditor(String.class, new StringTrimmerEditor(true));
        binder.registerCustomEditor(URL.class, new URLEditor());
    }
}


到目前为止,我已经注册了这么多编辑器。通过覆盖各自的方法已定制了其中的两个DateTimeEditorStrictNumberFormatEditor,以满足数字格式和Joda-Time的自定义需求。

由于我使用的是Spring 3.2.0,因此可以利用@ControllerAdvice的优势。

Spring建议使用setAllowedFields()方法列出一组允许的字段,以使恶意用户无法将值注入绑定的对象中。

docs关于DataBinder


允许将属性值设置到目标对象的活页夹,
包括对验证和绑定结果分析的支持。的
可以通过指定允许的字段来自定义绑定过程,
必填字段,自定义编辑器等。

请注意,如果无法设置,可能会带来安全隐患
允许字段的数组。如果是HTTP形式的POST数据,
例如,恶意客户端可以尝试通过以下方式破坏应用程序
为不存在的字段或属性提供值
形成。在某些情况下,这可能会导致设置非法数据
命令对象或其嵌套对象。因此,
建议在DataBinder上指定allowedFields属性。




我的应用程序很大,显然有数千个字段。用setAllowedFields()指定并列出所有这些都是繁琐的工作。此外,我需要以某种方式记住它们。

更改网页以删除一些字段或在需要时添加其他字段需要再次修改setAllowedFields()方法的参数值以反映这些更改。

除此之外,还有其他选择吗?

最佳答案

您可以使用setAllowedFields()列入黑名单,而不是使用setDisallowedFields()列入白名单。例如,从petclinic示例应用程序中:

@InitBinder
public void setAllowedFields(WebDataBinder dataBinder) {
    dataBinder.setDisallowedFields("id");
}


从纯粹的安全角度来看,白名单比黑名单更可取,但它可能会减轻一些负担。

09-26 09:43