| 1 | <!DOCTYPE web-app PUBLIC
|
|---|
| 2 | "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
|
|---|
| 3 | "http://java.sun.com/dtd/web-app_2_3.dtd" >
|
|---|
| 4 | <web-app>
|
|---|
| 5 | <display-name>Emergency Department Tracking Board Server Proxy Application</display-name>
|
|---|
| 6 |
|
|---|
| 7 | <context-param>
|
|---|
| 8 | <param-name>javax.servlet.jsp.jstl.fmt.localizationContext</param-name>
|
|---|
| 9 | <param-value>strings</param-value>
|
|---|
| 10 | </context-param>
|
|---|
| 11 | <!-- Fallback locale if no bundles found for browser's preferred locale -->
|
|---|
| 12 | <!-- Force a single locale using param-name 'javax.servlet.jsp.jstl.fmt.locale' -->
|
|---|
| 13 | <context-param>
|
|---|
| 14 | <param-name>javax.servlet.jsp.jstl.fmt.fallbackLocale</param-name>
|
|---|
| 15 | <param-value>en</param-value>
|
|---|
| 16 | </context-param>
|
|---|
| 17 |
|
|---|
| 18 | <context-param>
|
|---|
| 19 | <param-name>contextConfigLocation</param-name>
|
|---|
| 20 | <param-value>
|
|---|
| 21 | classpath*:/applicationContext-dao.xml
|
|---|
| 22 | </param-value>
|
|---|
| 23 | </context-param>
|
|---|
| 24 |
|
|---|
| 25 | <filter>
|
|---|
| 26 | <filter-name>noCacheFilter</filter-name>
|
|---|
| 27 | <filter-class>gov.va.med.edp.web.servlet.filter.ResponseHeaderFilter</filter-class>
|
|---|
| 28 | <init-param>
|
|---|
| 29 | <param-name>Cache-Control</param-name>
|
|---|
| 30 | <param-value>cache,must-revalidate</param-value>
|
|---|
| 31 | </init-param>
|
|---|
| 32 | <init-param>
|
|---|
| 33 | <param-name>Pragma</param-name>
|
|---|
| 34 | <param-value>public</param-value>
|
|---|
| 35 | </init-param>
|
|---|
| 36 | </filter>
|
|---|
| 37 |
|
|---|
| 38 | <listener>
|
|---|
| 39 | <listener-class>org.springframework.web.util.IntrospectorCleanupListener</listener-class>
|
|---|
| 40 | </listener>
|
|---|
| 41 |
|
|---|
| 42 | <listener>
|
|---|
| 43 | <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
|
|---|
| 44 | </listener>
|
|---|
| 45 |
|
|---|
| 46 | <servlet>
|
|---|
| 47 | <servlet-name>dispatcher</servlet-name>
|
|---|
| 48 | <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
|
|---|
| 49 | <load-on-startup>1</load-on-startup>
|
|---|
| 50 | </servlet>
|
|---|
| 51 |
|
|---|
| 52 | <filter-mapping>
|
|---|
| 53 | <filter-name>noCacheFilter</filter-name>
|
|---|
| 54 | <url-pattern>*.swf</url-pattern>
|
|---|
| 55 | </filter-mapping>
|
|---|
| 56 |
|
|---|
| 57 | <filter-mapping>
|
|---|
| 58 | <filter-name>noCacheFilter</filter-name>
|
|---|
| 59 | <url-pattern>/bigboard.html</url-pattern>
|
|---|
| 60 | </filter-mapping>
|
|---|
| 61 |
|
|---|
| 62 | <servlet-mapping>
|
|---|
| 63 | <servlet-name>dispatcher</servlet-name>
|
|---|
| 64 | <url-pattern>/bigboard.html</url-pattern>
|
|---|
| 65 | </servlet-mapping>
|
|---|
| 66 |
|
|---|
| 67 | <servlet-mapping>
|
|---|
| 68 | <servlet-name>dispatcher</servlet-name>
|
|---|
| 69 | <url-pattern>*.xml</url-pattern>
|
|---|
| 70 | </servlet-mapping>
|
|---|
| 71 |
|
|---|
| 72 | <servlet-mapping>
|
|---|
| 73 | <servlet-name>dispatcher</servlet-name>
|
|---|
| 74 | <url-pattern>*.csv</url-pattern>
|
|---|
| 75 | </servlet-mapping>
|
|---|
| 76 |
|
|---|
| 77 | <session-config>
|
|---|
| 78 | <session-timeout>5</session-timeout>
|
|---|
| 79 | </session-config>
|
|---|
| 80 |
|
|---|
| 81 | <welcome-file-list>
|
|---|
| 82 | <welcome-file>/bigboard.html</welcome-file>
|
|---|
| 83 | </welcome-file-list>
|
|---|
| 84 |
|
|---|
| 85 | <error-page>
|
|---|
| 86 | <error-code>500</error-code>
|
|---|
| 87 | <location>/error500.jsp</location>
|
|---|
| 88 | </error-page>
|
|---|
| 89 |
|
|---|
| 90 | </web-app>
|
|---|