public Object get(OgnlContext context, Object target, String propertyName) {
   try {
     return OgnlRuntime.getMethodValue(context, target, propertyName, true);
   } catch (Exception ex) {
     throw new RuntimeException(ex);
   }
 }