get(..) 수정

master
mjkhan21 4 months ago
parent c2e828f2da
commit 4b183dd4e5

@ -108,9 +108,13 @@ public class Property extends AbstractComponent {
*/
return BeanUtils.getProperty(obj, name);
} catch (Exception e) {
try {
return BeanUtils.getIndexedProperty(obj, name);
} catch (Exception e2) {
throw runtimeException(e);
}
}
}
public Object getValue(Object obj, String name) {
if (name.contains("."))

Loading…
Cancel
Save