org.springframework.expression.BeanResolver Java Examples
The following examples show how to use
org.springframework.expression.BeanResolver.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: BeanReference.java From spring-analysis-note with MIT License | 6 votes |
@Override public TypedValue getValueInternal(ExpressionState state) throws EvaluationException { BeanResolver beanResolver = state.getEvaluationContext().getBeanResolver(); if (beanResolver == null) { throw new SpelEvaluationException( getStartPosition(), SpelMessage.NO_BEAN_RESOLVER_REGISTERED, this.beanName); } try { return new TypedValue(beanResolver.resolve(state.getEvaluationContext(), this.beanName)); } catch (AccessException ex) { throw new SpelEvaluationException(getStartPosition(), ex, SpelMessage.EXCEPTION_DURING_BEAN_RESOLUTION, this.beanName, ex.getMessage()); } }
Example #2
Source File: BeanReference.java From java-technology-stack with MIT License | 6 votes |
@Override public TypedValue getValueInternal(ExpressionState state) throws EvaluationException { BeanResolver beanResolver = state.getEvaluationContext().getBeanResolver(); if (beanResolver == null) { throw new SpelEvaluationException( getStartPosition(), SpelMessage.NO_BEAN_RESOLVER_REGISTERED, this.beanName); } try { return new TypedValue(beanResolver.resolve(state.getEvaluationContext(), this.beanName)); } catch (AccessException ex) { throw new SpelEvaluationException(getStartPosition(), ex, SpelMessage.EXCEPTION_DURING_BEAN_RESOLUTION, this.beanName, ex.getMessage()); } }
Example #3
Source File: BeanReference.java From lams with GNU General Public License v2.0 | 6 votes |
@Override public TypedValue getValueInternal(ExpressionState state) throws EvaluationException { BeanResolver beanResolver = state.getEvaluationContext().getBeanResolver(); if (beanResolver == null) { throw new SpelEvaluationException( getStartPosition(), SpelMessage.NO_BEAN_RESOLVER_REGISTERED, this.beanName); } try { return new TypedValue(beanResolver.resolve(state.getEvaluationContext(), this.beanName)); } catch (AccessException ex) { throw new SpelEvaluationException(getStartPosition(), ex, SpelMessage.EXCEPTION_DURING_BEAN_RESOLUTION, this.beanName, ex.getMessage()); } }
Example #4
Source File: BeanReference.java From spring4-understanding with Apache License 2.0 | 6 votes |
@Override public TypedValue getValueInternal(ExpressionState state) throws EvaluationException { BeanResolver beanResolver = state.getEvaluationContext().getBeanResolver(); if (beanResolver == null) { throw new SpelEvaluationException( getStartPosition(), SpelMessage.NO_BEAN_RESOLVER_REGISTERED, this.beanName); } try { return new TypedValue(beanResolver.resolve(state.getEvaluationContext(), this.beanName)); } catch (AccessException ex) { throw new SpelEvaluationException(getStartPosition(), ex, SpelMessage.EXCEPTION_DURING_BEAN_RESOLUTION, this.beanName, ex.getMessage()); } }
Example #5
Source File: SimpleEvaluationContext.java From spring-analysis-note with MIT License | 4 votes |
/** * {@code SimpleEvaluationContext} does not support the use of bean references. * @return always {@code null} */ @Override @Nullable public BeanResolver getBeanResolver() { return null; }
Example #6
Source File: StandardEvaluationContext.java From spring-analysis-note with MIT License | 4 votes |
public void setBeanResolver(BeanResolver beanResolver) { this.beanResolver = beanResolver; }
Example #7
Source File: StandardEvaluationContext.java From spring-analysis-note with MIT License | 4 votes |
@Override @Nullable public BeanResolver getBeanResolver() { return this.beanResolver; }
Example #8
Source File: SimpleEvaluationContext.java From java-technology-stack with MIT License | 4 votes |
/** * {@code SimpleEvaluationContext} does not support the use of bean references. * @return always {@code null} */ @Override @Nullable public BeanResolver getBeanResolver() { return null; }
Example #9
Source File: StandardEvaluationContext.java From java-technology-stack with MIT License | 4 votes |
public void setBeanResolver(BeanResolver beanResolver) { this.beanResolver = beanResolver; }
Example #10
Source File: StandardEvaluationContext.java From java-technology-stack with MIT License | 4 votes |
@Override @Nullable public BeanResolver getBeanResolver() { return this.beanResolver; }
Example #11
Source File: StandardEvaluationContext.java From lams with GNU General Public License v2.0 | 4 votes |
public void setBeanResolver(BeanResolver beanResolver) { this.beanResolver = beanResolver; }
Example #12
Source File: StandardEvaluationContext.java From lams with GNU General Public License v2.0 | 4 votes |
@Override public BeanResolver getBeanResolver() { return this.beanResolver; }
Example #13
Source File: StandardEvaluationContext.java From spring4-understanding with Apache License 2.0 | 4 votes |
public void setBeanResolver(BeanResolver beanResolver) { this.beanResolver = beanResolver; }
Example #14
Source File: StandardEvaluationContext.java From spring4-understanding with Apache License 2.0 | 4 votes |
@Override public BeanResolver getBeanResolver() { return this.beanResolver; }