You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 30, 2019. It is now read-only.
Since EL Lambdas predate Java functional interfaces, custom EL resolvers must be used to as bridge between javax.el.LambdaExpression, and actual method with a accepting functional interface parameter.
Java EE 8 revision of EL should either
bring sufficient support for all Java SE methods accepting functional interfaces, or
offer implicit type conversion from LambdaExpression to appropriate types defined in java.util.function, or
offer implicit conversion to any Functional interface conforming to §9.8 of JLS.
Example implementation of the first approach for java.util.Optional can be seen here