public FacesSpringELExpressionParser(SpelExpressionParser expressionParser, ConversionService conversionService) { super(expressionParser, conversionService); addPropertyAccessor(new JsfManagedBeanPropertyAccessor()); }
private ExpressionParser getExpressionParser() { if (this.expressionParser != null) { Assert.isTrue(!this.enableManagedBeans, "Do not specify a custom expression-parser when enable-managed-beans is true"); return this.expressionParser; } else { return (this.enableManagedBeans ? new FacesSpringELExpressionParser(new SpelExpressionParser(), this.conversionService) : new WebFlowSpringELExpressionParser(new SpelExpressionParser(), this.conversionService)); } }
private ExpressionParser getExpressionParser() { if (this.expressionParser != null) { Assert.isTrue(!this.enableManagedBeans, "Do not specify a custom expression-parser when enable-managed-beans is true"); return this.expressionParser; } else { return (this.enableManagedBeans ? new FacesSpringELExpressionParser(new SpelExpressionParser(), this.conversionService) : new WebFlowSpringELExpressionParser(new SpelExpressionParser(), this.conversionService)); } }
public FacesSpringELExpressionParser(SpelExpressionParser expressionParser) { super(expressionParser); addPropertyAccessor(new JsfManagedBeanPropertyAccessor()); }
public FacesSpringELExpressionParser(SpelExpressionParser expressionParser) { super(expressionParser); addPropertyAccessor(new JsfManagedBeanPropertyAccessor()); }
public FacesSpringELExpressionParser(SpelExpressionParser expressionParser, ConversionService conversionService) { super(expressionParser, conversionService); addPropertyAccessor(new JsfManagedBeanPropertyAccessor()); }