Advertisement
Guest User

Untitled

a guest
Sep 17th, 2019
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <web-app xmlns="http://java.sun.com/xml/ns/javaee"
  4. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  5. xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
  6. version="3.0">
  7. <servlet>
  8. <servlet-name>LoginServlet</servlet-name>
  9. <servlet-class>com.maniakjava.controller.LoginAction</servlet-class>
  10. </servlet>
  11. <servlet-mapping>
  12. <servlet-name>LoginServlet</servlet-name>
  13. <url-pattern>doLogin.do</url-pattern>
  14. </servlet-mapping>
  15. <session-config>
  16. <session-timeout>
  17. 30
  18. </session-timeout>
  19. </session-config>
  20. </web-app>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement