How does EL look for an attribute?
2 answers
EL is resolved using ELResolver chain. The order of EL resolvers is as follows:
-
ImplicitObjectELResolver
-
ELResolver
registered with this method, in the order they are registered. -
MapELResolver
-
ListELResolver
-
ArrayELResolver
-
BeanELResolver
-
ScopedAttributeELResolver
Each EL marker is assigned this resolver chain.
0
a source to share