Skip to content

Commit

Permalink
update beans early
Browse files Browse the repository at this point in the history
  • Loading branch information
igr committed Nov 4, 2018
1 parent 00596ef commit 09e8878
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion jodd-bean/src/main/java/jodd/bean/BeanProperty.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class BeanProperty {
BeanProperty(final BeanUtilBean beanUtilBean, final Object bean, final String propertyName) {
this.introspector = beanUtilBean.introspector;
setName(propertyName);
setBean(bean);
updateBean(bean);
this.last = true;
this.first = true;
this.fullName = bean.getClass().getSimpleName() + '#' + propertyName;
Expand Down
2 changes: 2 additions & 0 deletions jodd-joy/src/testInt/resources/joy.props
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,5 @@ joyActionConfig.interceptors=\
jodd.joy.auth.AuthInterceptor,\
jodd.joy.i18n.I18nInterceptor,\
jodd.madvoc.interceptor.ServletConfigInterceptor

fileUploader.maxFileSize=10000

0 comments on commit 09e8878

Please sign in to comment.