@ -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("."))