source: EDIS/tags/ed/tracking-server-bigboard/src/main/webapp/WEB-INF/views.xml@ 1240

Last change on this file since 1240 was 1240, checked in by George Lilly, 13 years ago

new version from the VA

File size: 1.1 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">
4
5 <bean id="xmlView" class="gov.va.med.edp.web.view.XmlView"/>
6
7 <bean id="exception" class="org.springframework.web.servlet.view.JstlView">
8 <property name="url" value="/exception.jsp"/>
9 </bean>
10
11 <bean id="bigBoard" class="org.springframework.web.servlet.view.JstlView">
12 <property name="url" value="/bigdisplayboard.jsp"/>
13 </bean>
14
15 <bean id="errorView" class="org.springframework.web.servlet.view.JstlView">
16 <property name="url" value="/boardErrorReport.jsp"/>
17 </bean>
18
19 <bean id="testPage" class="org.springframework.web.servlet.view.JstlView">
20 <property name="url" value="/testpage.jsp"/>
21 </bean>
22
23 <bean id="incompatibilityView" class="org.springframework.web.servlet.view.JstlView">
24 <property name="url" value="/WEB-INF/jsp/incompatibility.jsp"/>
25 </bean>
26</beans>
Note: See TracBrowser for help on using the repository browser.