Package org.springframework.data.mapping.model

Examples of org.springframework.data.mapping.model.SpELContext


    this.dbRefResolver = dbRefResolver;
    this.mappingContext = mappingContext;
    this.typeMapper = new DefaultMongoTypeMapper(DefaultMongoTypeMapper.DEFAULT_TYPE_KEY, mappingContext);
    this.idMapper = new QueryMapper(this);

    this.spELContext = new SpELContext(DBObjectPropertyAccessor.INSTANCE);
  }
View Full Code Here


   * @see org.springframework.context.ApplicationContextAware#setApplicationContext(org.springframework.context.ApplicationContext)
   */
  public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {

    this.applicationContext = applicationContext;
    this.spELContext = new SpELContext(this.spELContext, applicationContext);
  }
View Full Code Here

    Assert.notNull(conversionService);

    this.mappingContext = mappingContext;
    this.conversionService = conversionService;
    this.instantiators = new EntityInstantiators();
    this.context = new SpELContext(PdxReaderPropertyAccessor.INSTANCE);
  }
View Full Code Here

   * org.springframework.context.ApplicationContextAware#setApplicationContext
   * (org.springframework.context.ApplicationContext)
   */
  @Override
  public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
    this.context = new SpELContext(context, applicationContext);
  }
View Full Code Here

    super(new DefaultConversionService());

    Assert.notNull(mappingContext);

    this.mappingContext = mappingContext;
    this.spELContext = new SpELContext(RowReaderPropertyAccessor.INSTANCE);
  }
View Full Code Here

  }

  @Override
  public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
    this.applicationContext = applicationContext;
    this.spELContext = new SpELContext(this.spELContext, applicationContext);
  }
View Full Code Here

TOP

Related Classes of org.springframework.data.mapping.model.SpELContext

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.