/**
* 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;
}
java类org.springframework.validation.AbstractPropertyBindingResult的实例源码
UifServletRequestDataBinder.java 文件源码
项目:kc-rice
阅读 35
收藏 0
点赞 0
评论 0
UifServletRequestDataBinder.java 文件源码
项目:rice
阅读 30
收藏 0
点赞 0
评论 0
/**
* 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;
}
UifServletRequestDataBinder.java 文件源码
项目:kuali_rice
阅读 42
收藏 0
点赞 0
评论 0
/**
* 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;
}
RelaxedDataBinder.java 文件源码
项目:https-github.com-g0t4-jenkins2-course-spring-boot
阅读 31
收藏 0
点赞 0
评论 0
@Override
protected AbstractPropertyBindingResult createBeanPropertyBindingResult() {
return new RelaxedBeanPropertyBindingResult(getTarget(), getObjectName(),
isAutoGrowNestedPaths(), getAutoGrowCollectionLimit(),
getConversionService());
}
RelaxedDataBinder.java 文件源码
项目:spring-boot-concourse
阅读 39
收藏 0
点赞 0
评论 0
@Override
protected AbstractPropertyBindingResult createBeanPropertyBindingResult() {
return new RelaxedBeanPropertyBindingResult(getTarget(), getObjectName(),
isAutoGrowNestedPaths(), getAutoGrowCollectionLimit(),
getConversionService());
}
RelaxedDataBinder.java 文件源码
项目:contestparser
阅读 32
收藏 0
点赞 0
评论 0
@Override
protected AbstractPropertyBindingResult createBeanPropertyBindingResult() {
return new RelaxedBeanPropertyBindingResult(getTarget(), getObjectName(),
isAutoGrowNestedPaths(), getAutoGrowCollectionLimit(),
getConversionService());
}