I was testing struts 7 (tomcat 10) and I also use jstl for my 404,403s etc
(when I have no struts context) ie thrown from web.xml:
<error-page>
<error-code>403</error-code>
<location>/WEB-INF/jsp/errors/403.jsp</location>
</error-page>
Previously on this list it mentioned using the glassfish version. Think
glassfish is eclipse?
<dependency>
<groupId>org.glassfish.web</groupId>
<artifactId>jakarta.servlet.jsp.jstl</artifactId>
<version>3.0.1</version>
</dependency>
Seemed to work OK.
On Mon, 5 Feb 2024 at 15:50, Jeroen Hoffman <[email protected]>
wrote:
> On Mon, Feb 5, 2024 at 4:05 PM Mark Thomas <[email protected]> wrote:
>
> > >
> > > Are there plans to release the 2.0.0 version?
> >
> > No plans.
> >
> > Tomcat 10.1.x onwards uses the 1.2.5 taglibs release converted for
> > Jakarta EE using the Tomcat migration tool.
> >
>
> Thanks for the quick answer!
>
> Could you share some details on the migration? In a standard Tomcat 10 I
> see taglibs-standard-spec-1.2.5-migrated-0.0.1.jar and
> taglibs-standard-impl-1.2.5-migrated-0.0.1.jar in the examples webapp, but
> these are not published to Maven Central. So can an implementation reuse
> already converted jars or should it also do a conversion?
>
> TIA, Jeroen
>