Advertisement
Guest User

Untitled

a guest
Dec 20th, 2014
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://java.sun.com/xml/ns/javaee"
  4. xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
  5. http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
  6. version="3.0">
  7. <display-name>Hello</display-name>
  8. <welcome-file-list>
  9. <welcome-file>main.jsp</welcome-file>
  10. <welcome-file>index.html</welcome-file>
  11. </welcome-file-list>
  12. <session-config>
  13. <session-timeout>15</session-timeout>
  14. </session-config>
  15. <context-param>
  16. <description>Location to store uploaded file</description>
  17. <param-name>file-upload</param-name>
  18. <param-value>
  19. C:\c\
  20. </param-value>
  21. </context-param>
  22. </web
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement