2012-02-03 20 views
1

DispatcherServlet内のURLを、拡張子のないURLにマップするように設定しようとしました。私はついにこれを理解しましたが、なぜURLがそれがどういう仕組みになっているのか分かりません。AlwaysUseFullPathプロパティを使用したDispatcherServletを使用したURLマッピングの理解

DispatcherServletのurl-patternが/ rest/*で、RequestMappingが/ rest/jsの場合、ページにアクセスするには、 hostname:port/foobar/rest/rest/jsに移動します。 URLに二重/安静/休憩があるのはなぜですか?

DispatcherServletsが複数ある場合、同じRequestMappingを別のURLに移動できない可能性があります。つまり、RequestMappingが '/ js'で、DispatcherServletが/ rest/*に、/ json/*に設定されている場合、hostname:port/foobar/rest/jsとhostname:port/foob​​ar/json/jsは同じページを返しますか?

@RequestMappingがクラス定義にある場合は、URLを取得できません。メソッドでのみ動作します。

のweb.xml:

<?xml version="1.0" encoding="UTF-8"?> 
<web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"> 

<listener> 
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> 
</listener> 

<context-param> 
    <param-name>contextConfigLocation</param-name> 
    <param-value> 
     classpath:beans.xml 
    </param-value> 
</context-param> 

<servlet> 
    <servlet-name>dispatcher</servlet-name> 
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> 
</servlet> 

<servlet-mapping> 
    <servlet-name>dispatcher</servlet-name> 
    <url-pattern>/rest/*</url-pattern> 
</servlet-mapping> 

</web-app> 

ディスパッチャ-servlet.xml:

<?xml version="1.0" encoding="UTF-8"?> 
<beans xmlns="http://www.springframework.org/schema/beans" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p" 
xmlns:context="http://www.springframework.org/schema/context" 
xmlns:mvc="http://www.springframework.org/schema/mvc" 
xsi:schemaLocation=" 
http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd 
http://www.springframework.org/schema/context 
http://www.springframework.org/schema/context/spring-context-3.0.xsd 
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd"> 

<context:annotation-config /> 
<context:component-scan base-package="my.controller" /> 
<mvc:annotation-driven /> 

<!-- Handlers --> 
<bean 
    class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping"> 
    <property name="alwaysUseFullPath" value="true" /> 
</bean> 

<bean 
    class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter"> 
    <property name="alwaysUseFullPath" value="true" /> 
</bean> 

<!-- View Resolvers --> 

<bean id="defaultViewResolver" 
    class="org.springframework.web.servlet.view.InternalResourceViewResolver" 
    p:viewClass="org.springframework.web.servlet.view.JstlView" p:prefix="/WEB-INF/jsp/" 
    p:suffix=".jsp" /> 

</beans> 

JServicesController.java: 'foobarに' の文脈を想定し

@Controller 
public class JServicesController { 

    @Autowired 
    private TheService theService; 


    @ResponseBody 
    @RequestMapping("/rest/js") 
    public TheContent getTheContent() { 
     return theService.getTheContent(); 
    } 
} 

答えて

2

.. 。DispatcherServletのurlパターンが/ rest/*で、RequestMappingが/ rest/jsの場合は、ページにアクセスするために、私はhostname:port/foobar/rest/rest/jsに移動する必要があります。 URLに二重/安静/休憩があるのはなぜですか?

DispatcherServletsを複数設定することができ、それぞれを区別する必要があります。

あなたは、例えば1つの/documents/ @ディスパッチャサービス提供の文書と/images @別のサービス提供イメージがあるし、別のものを提供し、それらの両方のための@RequestMapping("/whatever")を持つことができます。

ダブルrest/restがあなたを刺激した場合、その後、あなたは/を提供するために、あなたのディスパッチャをマッピングすることができますが・

は...その後うではないホスト名:ポート/ foobarに/休息/ JSとホスト名:ポート/ foobarに/ JSON/jsは同じページを返しますか?

これを行うように設定した場合のみ。各ディスパッチャは異なるパッケージcomponent-scanを持つことができ、同じパスに対して異なるリクエストマッピングを持ちます。

+0

タイプ定義に@RequestMappingを置いたときに、なぜこれを動作させることができないのでしょうか?これは、私が見た多くの例と異なり、このメソッドでのみ機能します。 – acvcu

+0

関連するコードを貼り付けます – soulcheck

+0

@RequestMapping( "/ rest/js")をクラスレベルに移動する以外は、既に投稿したコードと同じです。 – acvcu

関連する問題