Show web.xml syntax highlighted
<?xml version="1.0" encoding="ISO-8859-1"?>
<web-app
xmlns="http://java.sun.com/xml/ns/j2ee"
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"
version="2.4">
<display-name>Re-searcher</display-name>
<servlet>
<servlet-name>researcher</servlet-name>
<servlet-class>researcher.web.ResearcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>researcher</servlet-name>
<url-pattern>/app</url-pattern>
</servlet-mapping>
<session-config>
<!-- 24 hours -->
<session-timeout>6024</session-timeout>
</session-config>
</web-app>
See more files for this project here