Example usage for org.springframework.data.mapping.model SpELContext SpELContext

List of usage examples for org.springframework.data.mapping.model SpELContext SpELContext

Introduction

In this page you can find the example usage for org.springframework.data.mapping.model SpELContext SpELContext.

Prototype

public SpELContext(SpELContext source, BeanFactory factory) 

Source Link

Document

Copy constructor to create a SpELContext using the given one's PropertyAccessor and SpelExpressionParser as well as the given BeanFactory .

Usage

From source file:com.joyveb.dbpimpl.cass.prepare.convert.MappingCassandraConverter.java

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

From source file:org.springframework.data.gemfire.mapping.MappingPdxSerializer.java

@Override
public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
    this.context = new SpELContext(context, applicationContext);
}