Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="UTF-8"?>
- <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd" id="WebApp_ID" version="4.0">
- <display-name>project1</display-name>
- <welcome-file-list>
- <welcome-file>index.html</welcome-file>
- <welcome-file>index.jsp</welcome-file>
- <welcome-file>index.htm</welcome-file>
- <welcome-file>default.html</welcome-file>
- <welcome-file>default.jsp</welcome-file>
- <welcome-file>default.htm</welcome-file>
- </welcome-file-list>
- <servlet>
- <servlet-name>Fservlet</servlet-name>
- <servlet-class>test.FirstServlet</servlet-class>
- </servlet>
- <servlet-mapping>
- <servlet-name>Fservlet</servlet-name>
- <url-pattern>/Fservlet</url-pattern>
- </servlet-mapping>
- </web-app>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement