Replaces the current EL context with a new StandardELContext initialized from the given context. The new context copies the ELResolver chain, FunctionMapper, VariableMapper, and other settings from the provided context. @param context the ELContext from which to initialize the new context
(ELContext context)
| 70 | * @return the previous StandardELContext, or {@code null} if none existed |
| 71 | */ |
| 72 | public ELContext setELContext(ELContext context) { |
| 73 | StandardELContext oldContext = this.context; |
| 74 | this.context = new StandardELContext(context); |
| 75 | return oldContext; |
| 76 | } |
| 77 | |
| 78 | /** |
| 79 | * Adds a {@link BeanNameELResolver} to the resolver chain that uses the given |