jakartaee / expression-language

Jakarta Expression Language
https://eclipse.org/ee4j/el
Other
60 stars 49 forks source link

Jakarta EL 3 example in standalone application #139

Closed PavelTurk closed 3 years ago

PavelTurk commented 3 years ago

Could anyone provide an example how to use Jakarta EL 3 in a standalone application (without any containers). For example, if I have ${100 + 200} how to execute this expression?

markt-asf commented 3 years ago

https://jakarta.ee/specifications/expression-language/3.0/apidocs/javax/el/ELProcessor.html

PavelTurk commented 3 years ago

@markt-asf Thank you very much. It can be funny, but all examples I found in internet were about implementing context, resolver and mappers although Processor is enough for me.