[SPRING] 바람둥이에 봄 mvc 응용 프로그램에 대한 응용 프로그램 루트 변경
SPRING바람둥이에 봄 mvc 응용 프로그램에 대한 응용 프로그램 루트 변경
Spring MVC 3.0에서 샘플 RESTEasy 2.0 리소스로 작업 중이며 Tomcat 6을 사용 중입니다. http : //localhost:8080/examples-resteasy-2.1-SNAPSHOT/contacts를 통해 내 리소스에 액세스 할 수 있지만 액세스하려고합니다. http : // localhost : 8080 / contacts 또는 심지어 http : // localhost : 8080 / myservice / contacts
내 응용 프로그램이 경로에 매핑되는 방식을 변경해야합니까?
웹
<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 {
...
해결법
-
==============================
1.Tomcat server.xml에서이를 설정할 수 있습니다.
Tomcat server.xml에서이를 설정할 수 있습니다.
아래의
에 요소를 추가하면 예제 - resteasy-2.1-SNAPSHOT이 기본 웹 응용 프로그램으로 설정됩니다. <Context docBase="examples-resteasy-2.1-SNAPSHOT" path="" reloadable="true" />
이렇게하면 http : // localhost : 8080 / contacts로 액세스 할 수 있습니다.
아래처럼 "myservice"경로 설정
<Context docBase="examples-resteasy-2.1-SNAPSHOT" path="/myservice" reloadable="true" />
http : // localhost : 8080 / myservice / contacts로 액세스 할 수 있어야합니다.
from https://stackoverflow.com/questions/3773687/changing-app-root-for-spring-mvc-app-on-tomcat by cc-by-sa and MIT license
'SPRING' 카테고리의 다른 글
[SPRING] @Configuration 클래스에서 @PostConstruct의 예상되는 동작은 무엇입니까? (0) | 2019.03.18 |
---|---|
[SPRING] Java 프로젝트 : ApplicationContext를로드하지 못했습니다. (0) | 2019.03.18 |
[SPRING] Spring 데이터 Rest : 사용자 자원 반환 (0) | 2019.03.18 |
[SPRING] CrudRepository와 Hibernate : 트랜잭션에 save (Entity)를 저장 (List <S>) (0) | 2019.03.18 |
[SPRING] Spring MVC, 하나의 설정 대신 두 개의 설정 인스턴스 (0) | 2019.03.17 |