accounting-dashboard/src/main/webapp/WEB-INF/web.xml

22 lines
1.0 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" version="3.0">
<servlet>
<servlet-name>jUnitHostImpl</servlet-name>
<servlet-class>com.google.gwt.junit.server.JUnitHostImpl</servlet-class>
</servlet>
<servlet>
<servlet-name>AccountingDashboardService</servlet-name>
<servlet-class>org.gcube.portlets.user.accountingdashboard.server.AccountingDashboardServiceImpl</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>jUnitHostImpl</servlet-name>
<url-pattern>/accountingdashb/junithost/*</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>AccountingDashboardService</servlet-name>
<url-pattern>/accountingdashb/accountingdashboardservice</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>AccountingDashboard.html</welcome-file>
</welcome-file-list>
</web-app>