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/foobar/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();
}
}
タイプ定義に@RequestMappingを置いたときに、なぜこれを動作させることができないのでしょうか?これは、私が見た多くの例と異なり、このメソッドでのみ機能します。 – acvcu
関連するコードを貼り付けます – soulcheck
@RequestMapping( "/ rest/js")をクラスレベルに移動する以外は、既に投稿したコードと同じです。 – acvcu