EL
EL deferred expressions inspection
Warning
Reliability
New
Last modified: 03 December 2024Reports dynamic expressions where deferred expressions are expected and vice versa.
Example:
<jsp:useBean id="exampleBean" scope="request" type="java.util.Date"/>
<h:outputText id="${exampleBean.day}" value="#{exampleBean.day}" /> // Good
<h:outputText id="#{exampleBean.day}" value="${exampleBean.day}" /> // Error: `id` attribute requires dynamic expression, `value` - deferred
- By ID
Can be used to locate inspection in e.g. Qodana configuration files, where you can quickly enable or disable it, or adjust its settings.
ELDeferredExpressionsInspection
Inspection Details | |
---|---|
By default bundled with: | |
Can be installed with plugin: | Jakarta EE: Server Pages (JSP), 243.23126 |
Thanks for your feedback!
Was this page helpful?