Skip to content

Instantly share code, notes, and snippets.

@Falchio
Created June 8, 2023 17:04
Show Gist options
  • Save Falchio/1f699aa9bfe62c7a64b590ffed8ebfad to your computer and use it in GitHub Desktop.
Save Falchio/1f699aa9bfe62c7a64b590ffed8ebfad to your computer and use it in GitHub Desktop.
jakarta web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app
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_5_0.xsd"
version="5.0"
metadata-complete="false"
>
<module-name>project_name</module-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
</web-app>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment