You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TLD TEI classes are used to create variables for use within JSP code sections.
But after switching to Jakarta package this no longer works. And produces the following errors:
The following hotfix works for me:
Within org/eclipse/jst/jsp/core/internal/taglib/TaglibHelper.java
Changing ITERATION_QUALIFIER from javax to jakarta
private static final String ITERATION_QUALIFIER = "jakarta.servlet.jsp.tagext";
copying the jakarta package into org.eclipse.jst.jsp.core_....jar
The text was updated successfully, but these errors were encountered:
nitind
changed the title
TagExtraInfo in JSP not working
TagExtraInfo in Jakarta JSP not working
Sep 5, 2024
TLD TEI classes are used to create variables for use within JSP code sections.
But after switching to Jakarta package this no longer works. And produces the following errors:
The following hotfix works for me:
Within org/eclipse/jst/jsp/core/internal/taglib/TaglibHelper.java
The text was updated successfully, but these errors were encountered: