Advertisement
Guest User

Untitled

a guest
May 12th, 2013
1,244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.39 KB | None | 0 0
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!--
  3. Copyright 2004 The Apache Software Foundation
  4.  
  5. Licensed under the Apache License, Version 2.0 (the "License");
  6. you may not use this file except in compliance with the License.
  7. You may obtain a copy of the License at
  8.  
  9. http://www.apache.org/licenses/LICENSE-2.0
  10.  
  11. Unless required by applicable law or agreed to in writing, software
  12. distributed under the License is distributed on an "AS IS" BASIS,
  13. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. See the License for the specific language governing permissions and
  15. limitations under the License.
  16. -->
  17.  
  18. <web-app xmlns="http://java.sun.com/xml/ns/j2ee"
  19. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  20. xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
  21. version="2.4">
  22.  
  23. <display-name>Welcome to Tomcat</display-name>
  24. <description>
  25. Welcome to Tomcat
  26. </description>
  27.  
  28. <!-- JSPC servlet mappings start -->
  29.  
  30. <servlet>
  31. <servlet-name>org.apache.jsp.index_jsp</servlet-name>
  32. <servlet-class>org.apache.jsp.index_jsp</servlet-class>
  33. </servlet>
  34.  
  35. <servlet-mapping>
  36. <servlet-name>org.apache.jsp.index_jsp</servlet-name>
  37. <url-pattern>/index.jsp</url-pattern>
  38. </servlet-mapping>
  39.  
  40. <!-- JSPC servlet mappings end -->
  41.  
  42. </web-app>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement