Advertisement
Guest User

Untitled

a guest
Dec 20th, 2014
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.85 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
  3.         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4.         xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
  5.         version="3.1">
  6.     <servlet>
  7.         <servlet-name>Servlet</servlet-name>
  8.         <servlet-class>controll.Servlet</servlet-class>
  9.     </servlet>
  10.     <servlet-mapping>
  11.         <servlet-name>Servlet</servlet-name>
  12.         <url-pattern>/login</url-pattern>
  13.         <url-pattern>/admin</url-pattern>
  14.         <url-pattern>/register</url-pattern>
  15.     </servlet-mapping>
  16.     <jsp-config>
  17.         <jsp-property-group>
  18.             <url-pattern>/WEB-INF/views</url-pattern>
  19.             <url-pattern>/index.jsp</url-pattern>
  20.         </jsp-property-group>
  21.     </jsp-config>
  22. </web-app>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement