-
Notifications
You must be signed in to change notification settings - Fork 41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add an option to raise an error for undefined EL identifiers #40
Comments
@glassfishrobot Commented |
@glassfishrobot Commented |
@glassfishrobot Commented |
|
This will need to wait for Jakarta EE 10. |
With the refactoring of the
or something else? My current preference is for |
The naming on the "JSP Property Group sub-element" seems fine to me. Do we have any other Page Directives that use acronyms that we can crib from? (do we use Why 4 page directives like that?
Or is the history of JSP always been a 1::1 mapping of JSP Property Group sub-element to Page Directive? |
I think we should for consistency.
I'm only intending to create one new Page Directive. The 4 were different options for the single new setting "Throw a And I have thought of a better name:
It is a little verbose but much more expressive. It is shorter than the already existing
Some settings are replicated between property groups and page directives but both have settings the other does not. Replicating this one looks to be consistent with the current set of replicated settings. |
As a setting, yeah, i like it. |
Just a note that since this option impacts runtime, what looked like a trivial change requires a significant amount of plumbing and wider API changes (including in the Servlet API) to implement. I'm not at the point where I declare that I don't think this feature is worth the effort but the thought has crossed my mind. |
This is in support of: jakartaee/pages#40
This is in support of: jakartaee/pages#40
An undefined EL identifier in a JSP page has a default value of "", making it difficult to debug EL expressions evaluation in s JSP page. The spec should allow an option to raise an error in this case.
The RI should also be fixed to send back a message in the response in this case. The message should include the offending EL expression and undefined identifier.
The text was updated successfully, but these errors were encountered: