get(..) 수정

master
mjkhan21 4 months ago
parent c2e828f2da
commit 4b183dd4e5

@ -108,7 +108,11 @@ public class Property extends AbstractComponent {
*/ */
return BeanUtils.getProperty(obj, name); return BeanUtils.getProperty(obj, name);
} catch (Exception e) { } catch (Exception e) {
throw runtimeException(e); try {
return BeanUtils.getIndexedProperty(obj, name);
} catch (Exception e2) {
throw runtimeException(e);
}
} }
} }

Loading…
Cancel
Save