Package org.springframework.binding.expression

Examples of org.springframework.binding.expression.ValueCoercionException


      }
      beanWrapper.setPropertyValue(expression, value);
    } catch (NotWritablePropertyException e) {
      throw new PropertyNotFoundException(context.getClass(), expression, e);
    } catch (TypeMismatchException e) {
      throw new ValueCoercionException(context.getClass(), expression, value, e.getRequiredType(), e);
    } catch (BeansException e) {
      throw new EvaluationException(context.getClass(), getExpressionString(),
          "A BeansException occurred setting the value of expression '" + getExpressionString()
              + "' on context [" + context.getClass() + "] to [" + value + "]", e);
    }
View Full Code Here


      public Object convertValue(Map context, Object target, Member member, String propertyName, Object value,
          Class toType) throws ValueCoercionException {
        try {
          return conversionService.executeConversion(value, toType);
        } catch (ConversionException e) {
          throw new ValueCoercionException(context.getClass(), expressionString, value, toType, e);
        }
      }
    };
  }
View Full Code Here

      return value;
    } else {
      try {
        return conversionService.executeConversion(value, expectedType);
      } catch (ConversionException e) {
        throw new ValueCoercionException(context.getClass(), getExpressionString(), value, expectedType, e);
      }
    }
  }
View Full Code Here

    } catch (SpelEvaluationException e) {
      if (e.getMessageCode().equals(SpelMessage.PROPERTY_OR_FIELD_NOT_READABLE)) {
        throw new PropertyNotFoundException(rootObject.getClass(), getExpressionString(), e);
      }
      if (e.getMessageCode().equals(SpelMessage.TYPE_CONVERSION_ERROR)) {
        throw new ValueCoercionException(rootObject.getClass(), getExpressionString(), null, expectedType, e);
      }
      throw new EvaluationException(rootObject.getClass(), expression.getExpressionString(),
          "An ELException occurred getting the value for expression '" + getExpressionString()
              + "' on context [" + rootObject.getClass() + "]", e);
    }
View Full Code Here

    } catch (SpelEvaluationException e) {
      if (e.getMessageCode().equals(SpelMessage.PROPERTY_OR_FIELD_NOT_WRITABLE)) {
        throw new PropertyNotFoundException(rootObject.getClass(), getExpressionString(), e);
      }
      if (e.getMessageCode().equals(SpelMessage.EXCEPTION_DURING_PROPERTY_WRITE)) {
        throw new ValueCoercionException(rootObject.getClass(), getExpressionString(), value, expectedType, e);
      }
      throw new EvaluationException(rootObject.getClass(), getExpressionString(),
          "An ELException occurred setting the value of expression '" + getExpressionString()
              + "' on context [" + rootObject.getClass() + "] to [" + value + "]", e);
    }
View Full Code Here

      return value;
    } else {
      try {
        return conversionService.executeConversion(value, expectedType);
      } catch (ConversionException e) {
        throw new ValueCoercionException(context.getClass(), getExpressionString(), value, expectedType, e);
      }
    }
  }
View Full Code Here

      beanWrapper.setConversionService(conversionService.getDelegateConversionService());
      beanWrapper.setPropertyValue(expression, value);
    } catch (NotWritablePropertyException e) {
      throw new PropertyNotFoundException(context.getClass(), expression, e);
    } catch (TypeMismatchException e) {
      throw new ValueCoercionException(context.getClass(), expression, value, e.getRequiredType(), e);
    } catch (BeansException e) {
      throw new EvaluationException(context.getClass(), getExpressionString(),
          "A BeansException occurred setting the value of expression '" + getExpressionString()
              + "' on context [" + context.getClass() + "] to [" + value + "]", e);
    }
View Full Code Here

      public Object convertValue(Map context, Object target, Member member, String propertyName, Object value,
          Class toType) throws ValueCoercionException {
        try {
          return conversionService.executeConversion(value, toType);
        } catch (ConversionException e) {
          throw new ValueCoercionException(context.getClass(), expressionString, value, toType, e);
        }
      }
    };
  }
View Full Code Here

TOP

Related Classes of org.springframework.binding.expression.ValueCoercionException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.