-
Notifications
You must be signed in to change notification settings - Fork 0
Labels
bugSomething isn't workingSomething isn't working
Description
We bumped Java EE 8 to Jakarta EE 10 but missed the web.xml servlet version and also JSTL URIs. Apps appear to work fine, as apparently Wildfly handles older version declaration and older JSTL URIs, but these probably need to be updated.
Update web.xml with:
<web-app version="6.0"
xmlns="https://jakarta.ee/xml/ns/jakartaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://jakarta.ee/xml/ns/jakartaee https://jakarta.ee/xml/ns/jakartaee/web-app_6_0.xsd">
Search and replace JSP taglib URI with:
http://java.sun.com/jsp/jstl/ -> jakarta.tags.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working
Type
Projects
Status
Done