23 lines
800 B
XML
23 lines
800 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<web-app xmlns="http://java.sun.com/xml/ns/j2ee" version="2.4"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd http://xmlns.jcp.org/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
|
|
xmlns:web="http://xmlns.jcp.org/xml/ns/javaee">
|
|
|
|
<session-config>
|
|
<session-timeout>1440</session-timeout>
|
|
</session-config>
|
|
|
|
<servlet>
|
|
<servlet-name>CategoriesPage</servlet-name>
|
|
<servlet-class>com.stephenschafer.budget.web.CategoriesPage</servlet-class>
|
|
<load-on-startup>1</load-on-startup>
|
|
</servlet>
|
|
|
|
<servlet-mapping>
|
|
<servlet-name>CategoriesPage</servlet-name>
|
|
<url-pattern>/categories</url-pattern>
|
|
</servlet-mapping>
|
|
|
|
</web-app>
|