изменение корня приложения для весеннего приложения mvc на tomcat
Я работаю с образцом ресурса RESTEasy 2.0 в Spring MVC 3.0 и перехожу на Tomcat 6. Я могу получить доступ к своему ресурсу через http: //localhost:8080/examples-resteasy-2.1-SNAPSHOT/contacts, но я хотел бы получить доступ через http: // localhost: 8080 / contacts или даже http: // localhost: 8080 / myservice / contacts
Есть ли что-то, что мне нужно изменить в том, как мое приложение отображается в путь?
web.xml
<web-app>
<servlet>
<servlet-name>springmvc</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:springmvc-servlet.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>springmvc</servlet-name>
<url-pattern>/contacts/*</url-pattern>
</servlet-mapping>
</web-app>
SpringMVC-servlet.xml
<beans xmlns="http: //www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
http: //www.springframework.org/schema/context http: //www.springframework.org/schema/context/spring-context-3.0.xsd
http: //www.springframework.org/schema/beans http: //www.springframework.org/schema/beans/spring-beans.xsd
">
<context:component-scan base-package="org.jboss.resteasy.examples.springmvc" />
<context:annotation-config />
<import resource="classpath:springmvc-resteasy.xml" /> <!-- this is included in the resteasy-spring library-->
<bean id="viewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="viewClass" value="org.springframework.web.servlet.view.JstlView" />
<property name="prefix" value="/WEB-INF/" />
<property name="suffix" value=".jsp" />
</bean>
</beans>
мой класс ресурсов RESTEasy
@Controller
@Path("/contacts")
public class ContactsResource {
...