https://bz.apache.org/bugzilla/show_bug.cgi?id=69262
Mark Thomas <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |INVALID --- Comment #1 from Mark Thomas <[email protected]> --- Tomcat provides its own EL API jar. It doesn't use the version provided by Jakarta. This is because, despite the name, the EL API contains some implementation and Tomcat needs the flexibility to use a different implementation. Tomcat isn't the only container that does this. The embedded JARs are, in response to use request, packaged in a minimum number of JARs. Hence the tomcat-embed-el JAR contains both the EL API and implementation. If you add a second EL API JAR then things are going to break. If you want to use the Jakarta EL API with Tomcat then rather than using the tomcat-embed-el JAR use the Jakarta EL API JAR with the standard Tomcat EL implementation - tomcat-jasper-el. -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
