Java 类org.springframework.validation.AbstractPropertyBindingResult 实例源码

项目:kc-rice    文件:UifServletRequestDataBinder.java   
/**
 * Allows for the setting attributes to use to find the data dictionary data from Kuali
 *
 * @see org.springframework.validation.DataBinder#getInternalBindingResult()
 */
@Override
protected AbstractPropertyBindingResult getInternalBindingResult() {
    if (this.bindingResult == null) {
        initBeanPropertyAccess();
    }

    return this.bindingResult;
}
项目:rice    文件:UifServletRequestDataBinder.java   
/**
 * Allows for the setting attributes to use to find the data dictionary data from Kuali
 *
 * @see org.springframework.validation.DataBinder#getInternalBindingResult()
 */
@Override
protected AbstractPropertyBindingResult getInternalBindingResult() {
    if (this.bindingResult == null) {
        initBeanPropertyAccess();
    }

    return this.bindingResult;
}
项目:kuali_rice    文件:UifServletRequestDataBinder.java   
/**
 * Allows for the setting attributes to use to find the data dictionary data from Kuali
 *
 * @see org.springframework.validation.DataBinder#getInternalBindingResult()
 */
@Override
protected AbstractPropertyBindingResult getInternalBindingResult() {
    if (this.bindingResult == null) {
        initBeanPropertyAccess();
    }

    return this.bindingResult;
}
项目:https-github.com-g0t4-jenkins2-course-spring-boot    文件:RelaxedDataBinder.java   
@Override
protected AbstractPropertyBindingResult createBeanPropertyBindingResult() {
    return new RelaxedBeanPropertyBindingResult(getTarget(), getObjectName(),
            isAutoGrowNestedPaths(), getAutoGrowCollectionLimit(),
            getConversionService());
}
项目:spring-boot-concourse    文件:RelaxedDataBinder.java   
@Override
protected AbstractPropertyBindingResult createBeanPropertyBindingResult() {
    return new RelaxedBeanPropertyBindingResult(getTarget(), getObjectName(),
            isAutoGrowNestedPaths(), getAutoGrowCollectionLimit(),
            getConversionService());
}
项目:contestparser    文件:RelaxedDataBinder.java   
@Override
protected AbstractPropertyBindingResult createBeanPropertyBindingResult() {
    return new RelaxedBeanPropertyBindingResult(getTarget(), getObjectName(),
            isAutoGrowNestedPaths(), getAutoGrowCollectionLimit(),
            getConversionService());
}