Class SpringExpressionManager


  • public class SpringExpressionManager
    extends ExpressionManager
    ExpressionManager that exposes the full application-context or a limited set of beans in expressions.
    Author:
    Tom Baeyens
    • Field Detail

      • applicationContext

        protected org.springframework.context.ApplicationContext applicationContext
    • Constructor Detail

      • SpringExpressionManager

        public SpringExpressionManager​(org.springframework.context.ApplicationContext applicationContext,
                                       java.util.Map<java.lang.Object,​java.lang.Object> beans)
        Parameters:
        applicationContext - the applicationContext to use. Ignored when 'beans' parameter is not null.
        beans - a map of custom beans to expose. If null, all beans in the application-context will be exposed.
      • SpringExpressionManager

        public SpringExpressionManager​(org.springframework.context.ApplicationContext applicationContext)
        Parameters:
        applicationContext - the applicationContext to use.
        See Also:
        SpringExpressionManager(ApplicationContext, Map)