Class ELResolvers
java.lang.Object
io.micronaut.el.resolver.ELResolvers
The factory of the standard resolver chain of the module.
- Since:
- 1.0
- Author:
- Denis Stepanov
-
Method Summary
Modifier and TypeMethodDescriptionstatic jakarta.el.ELResolverstandard()Creates the standard chain of resolvers, which starts with the bean introspections generated at compilation time and continues with the resolvers of the specification.static jakarta.el.ELResolverstandard(jakarta.el.ELResolver... first) Creates the standard chain of resolvers, starting with the given resolvers.static List<jakarta.el.ELResolver> standardResolvers(jakarta.el.ELResolver... first) The resolvers of the standard chain, in order, for a chain that adds resolvers in front of them.
-
Method Details
-
standard
public static jakarta.el.ELResolver standard()Creates the standard chain of resolvers, which starts with the bean introspections generated at compilation time and continues with the resolvers of the specification.- Returns:
- The resolver chain
-
standard
public static jakarta.el.ELResolver standard(jakarta.el.ELResolver... first) Creates the standard chain of resolvers, starting with the given resolvers.- Parameters:
first- The resolvers to consult first- Returns:
- The resolver chain
-
standardResolvers
The resolvers of the standard chain, in order, for a chain that adds resolvers in front of them.- Parameters:
first- The resolvers to consult first- Returns:
- The resolvers
-