Skip to content

Instantly share code, notes, and snippets.

@albert-hg
Created August 5, 2020 03:44
Show Gist options
  • Save albert-hg/bf8723f6d717e94c99e5bece4fc1459b to your computer and use it in GitHub Desktop.
Save albert-hg/bf8723f6d717e94c99e5bece4fc1459b to your computer and use it in GitHub Desktop.
mapping servlet and jsp by web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app
xmlns:javaee="http://java.sun.com/xml/ns/javaee"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
<servlet-mapping>
<servlet-name>HomePage</servlet-name>
<url-pattern>/HomePage</url-pattern>
</servlet-mapping>
</web-app>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment