Returns the StandardELContext managed by this ELManager, creating it on first access if it does not already exist. @return the StandardELContext instance
()
| 53 | * @return the StandardELContext instance |
| 54 | */ |
| 55 | public StandardELContext getELContext() { |
| 56 | if (context == null) { |
| 57 | context = new StandardELContext(getExpressionFactory()); |
| 58 | } |
| 59 | |
| 60 | return context; |
| 61 | } |
| 62 | |
| 63 | /** |
| 64 | * Replaces the current EL context with a new {@link StandardELContext} initialized from the |