Package org.springframework.binding.convert.service

Examples of org.springframework.binding.convert.service.DefaultConversionService


  private ConversionService conversionService;

  private List<PropertyAccessor> propertyAccessors = new ArrayList<PropertyAccessor>();

  public SpringELExpressionParser(SpelExpressionParser expressionParser) {
    this(expressionParser, new DefaultConversionService());
  }
View Full Code Here


        super.setConversionService(conversionService);
        setExpressionParser(new WebFlowSpringELExpressionParser(new SpelExpressionParser(), conversionService));
      }
    };
    services.setViewFactoryCreator(new MockViewFactoryCreator());
    services.setConversionService(new DefaultConversionService());
    services.setApplicationContext(createTestApplicationContext());
    return services;
  }
View Full Code Here

  // implementing InitializingBean

  public void afterPropertiesSet() throws Exception {
    Assert.notNull(flowDefinitionLocator, "The flow definition locator property is required");
    if (conversionService == null) {
      conversionService = new DefaultConversionService();
    }
    MutableAttributeMap<Object> executionAttributes = createFlowExecutionAttributes();
    FlowExecutionImplFactory executionFactory = createFlowExecutionFactory(executionAttributes);
    DefaultFlowExecutionRepository executionRepository = createFlowExecutionRepository(executionFactory);
    executionFactory.setExecutionKeyFactory(executionRepository);
View Full Code Here

  /**
   * Creates a new expression parser that uses a {@link DefaultConversionService} to perform type conversion.
   */
  public BeanWrapperExpressionParser() {
    this.conversionService = new DefaultConversionService();
  }
View Full Code Here

TOP

Related Classes of org.springframework.binding.convert.service.DefaultConversionService

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.