Skip to content

Instantly share code, notes, and snippets.

@JorisNienkemper
Created November 27, 2020 22:16
Show Gist options
  • Save JorisNienkemper/b90fff662f7c58e3d2f407a7eb490f34 to your computer and use it in GitHub Desktop.
Save JorisNienkemper/b90fff662f7c58e3d2f407a7eb490f34 to your computer and use it in GitHub Desktop.
jee7 angular friendly web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.1" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd">
<welcome-file-list>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
<error-page>
<error-code>404</error-code>
<location>/</location>
</error-page>
</web-app>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment