jakartaee / expression-language

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

Portlet Bridge Issue: Extend implicit object elresolver #25

Closed glassfishrobot closed 3 years ago

glassfishrobot commented 13 years ago

Background: The portlet environment contains additional objects that would benefit from being EL resolved using the implicit object el resolver (portlet preferences, etc). Currently there isn't anyway for an extension to extend this resolver. Yes, the extension can introduce its own resolver but it runs a different level (in front of most resolvers) and hence might inappropriately match something prematurely as an implicit reference.

Affected Versions

[current]

glassfishrobot commented 6 years ago
glassfishrobot commented 13 years ago

@glassfishrobot Commented Reported by @edburns

glassfishrobot commented 13 years ago

@glassfishrobot Commented Issue-Links: is duplicated by JAVASERVERFACES_SPEC_PUBLIC-337

glassfishrobot commented 7 years ago

@glassfishrobot Commented This issue was imported from java.net JIRA UEL-25

markt-asf commented 4 years ago

The request here is not clear. The only use of "implicit" in the ImportHandler where it states importing a package implicitly imports the classes of that package. Please expand on exactly what is required here.

markt-asf commented 3 years ago

After some further research I am going to resolve this as WONTFIX. The ImplicitObjectELResolver is part of the JSP specification, not the EL specification. The portlet spec can use JspApplicationContext.addELResolver() to add their own resolver which will added after the existing implicit resolver.