Using the setAllowedFields() method in Spring

后端 未结 4 715
后悔当初
后悔当初 2021-01-15 05:56

I\'m using Spring 3.2.0. I have registered a few custom property editors for some basic needs as follows.

import editors.DateTimeEditor;
import edito         


        
相关标签:
4条回答
  • 2021-01-15 06:08

    A solution to use binder with DTO (companydata in example) in case most of the form input values should be converted to null if empty, but there is a need to add few exceptions (setDisallowedFields didn't work for me).

    @InitBinder()
    public void initBinder(WebDataBinder binder) {
        binder.registerCustomEditor(String.class, new StringTrimmerEditor(true));
    }
    
    @InitBinder
    protected void initBinder(HttpServletRequest request, ServletRequestDataBinder binder) {
        binder.registerCustomEditor(String.class, "companydata.companyName", new StringTrimmerEditor(false));
        binder.registerCustomEditor(String.class, "companydata.companyNumber", new StringTrimmerEditor(false));
    }
    
    0 讨论(0)
  • 2021-01-15 06:14

    Instead of using setAllowedFields() to white-list, you can use setDisallowedFields() to black-list. For example, from the petclinic sample application:

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

    From a pure security standpoint white-listing is preferred to black-listing, but it maybe help ease the burden some.

    0 讨论(0)
  • 2021-01-15 06:20

    from http://static.springsource.org/spring-webflow/docs/2.0.x/reference/htmlsingle/spring-webflow-reference.html#view-model

    4.9. Specifying bindings explicitly

    Use the binder element to configure the exact set of model bindings usable by the view. This is particularly useful in a Spring MVC environment for restricting the set of "allowed fields" per view.

    <view-state id="enterBookingDetails" model="booking">
        <binder>
            <binding property="creditCard" />
            <binding property="creditCardName" />
            <binding property="creditCardExpiryMonth" />
            <binding property="creditCardExpiryYear" />
        </binder>
        <transition on="proceed" to="reviewBooking" />
        <transition on="cancel" to="cancel" bind="false" />
    </view-state>
    

    If the binder element is not specified, all public properties of the model are eligible for binding by the view. With the binder element specified, only the explicitly configured bindings are allowed.

    Each binding may also apply a converter to format the model property value for display in a custom manner. If no converter is specified, the default converter for the model property's type will be used.

    <view-state id="enterBookingDetails" model="booking">
        <binder>
            <binding property="checkinDate" converter="shortDate" />
            <binding property="checkoutDate" converter="shortDate" />    
            <binding property="creditCard" />
            <binding property="creditCardName" />
            <binding property="creditCardExpiryMonth" />
            <binding property="creditCardExpiryYear" />
        </binder>
        <transition on="proceed" to="reviewBooking" />
        <transition on="cancel" to="cancel" bind="false" />
    </view-state>
    

    In the example above, the shortDate converter is bound to the checkinDate and checkoutDate properties. Custom converters may be registered with the application's ConversionService.

    Each binding may also apply a required check that will generate a validation error if the user provided value is null on form postback:

    <view-state id="enterBookingDetails" model="booking">
        <binder>
            <binding property="checkinDate" converter="shortDate" required="true" />
            <binding property="checkoutDate" converter="shortDate" required="true" />
            <binding property="creditCard" required="true" />
            <binding property="creditCardName" required="true" />
            <binding property="creditCardExpiryMonth" required="true" />
            <binding property="creditCardExpiryYear" required="true" />
        </binder>
        <transition on="proceed" to="reviewBooking">
        <transition on="cancel" to="bookingCancelled" bind="false" />
    </view-state>
    

    In the example above, all of the bindings are required. If one or more blank input values are bound, validation errors will be generated and the view will re-render with those errors.

    0 讨论(0)
  • 2021-01-15 06:29

    setAllowedFields() is very handy when using entity objects directly in web layer. Alternatively, one could use dedicated data transfer objects (DTO), from which entity objects are constructed in the service layer. Not only can the factories be re-used, but also used outside the web context, e.g. for asynchronous messages. Besides, DTO inheritance doesn't have to follow entity inheritance, so you are free to design the DTO hierarchy according to the needs of the use-cases.

    0 讨论(0)
提交回复
热议问题