Skip to content

Instantly share code, notes, and snippets.

@Falchio
Last active April 26, 2023 10:16
Show Gist options
  • Save Falchio/6d5e43eef5c134f38bcbca523ada35c5 to your computer and use it in GitHub Desktop.
Save Falchio/6d5e43eef5c134f38bcbca523ada35c5 to your computer and use it in GitHub Desktop.
minimal web.xml for convert JS app to WAR file
<web-app xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
version="3.0">
<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