matthiasblaesing commented on issue #8543: URL: https://github.com/apache/netbeans/issues/8543#issuecomment-3448579763
I had a shot look at this. I experimented with upgrading the bundled JSTL and upgrading the JSP compiler to the most recent Jakarta version. My key takeaways: - both the javax version of jstl and the jakarta version can be packaged in the same module - Apache Jasper (the JSP compiler) is tied hard to the Servlet API - So depending on the project we need to either call the javax version of jasper together with the javax jstl or the corresponding jakarta version - the `javax.servlet.jsp` packages are used through out NetBeans and was considered a stable API. This needs to be abstracted to be able to switch implementations -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
