Created
September 2, 2014 05:47
-
-
Save kamcpp/b330ff13aeeef5d69b71 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="ISO-8859-1" ?> | |
| <web-app xmlns="http://java.sun.com/xml/ns/j2ee" | |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" | |
| version="2.4"> | |
| <servlet> | |
| <servlet-name>abc</servlet-name> | |
| <servlet-class>web.MyServlet</servlet-class> | |
| </servlet> | |
| <servlet-mapping> | |
| <servlet-name>abc</servlet-name> | |
| <url-pattern>/</url-pattern> | |
| </servlet-mapping> | |
| </web-app> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment