Create a new ExpressionFactory. The class to use is determined by the following search order: services API (META-INF/services/jakarta.el.ExpressionFactory) $JRE_HOME/lib/el.properties - key jakarta.el.ExpressionFactory jakarta.el.ExpressionFactory Platform
()
| 70 | * @return the new ExpressionFactory |
| 71 | */ |
| 72 | public static ExpressionFactory newInstance() { |
| 73 | return newInstance(null); |
| 74 | } |
| 75 | |
| 76 | /** |
| 77 | * Create a new {@link ExpressionFactory} passing in the provided {@link Properties}. Search order is the same as |