我尝试在DispatcherServlet中配置URL以映射到没有扩展名的URL。我终于明白了这一点,但我不明白为什么URL正在以它的方式运作。
假设'foobar'的上下文...如果DispatcherServlet的url-pattern是/ rest / *并且我有一个RequestMapping为/ rest / js,那么为了到达页面,我必须去到主机名: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:
@Controller
public class JServicesController {
@Autowired
private TheService theService;
@ResponseBody
@RequestMapping("/rest/js")
public TheContent getTheContent() {
return theService.getTheContent();
}
}
答案 0 :(得分:3)
假设'foobar'的上下文...如果DispatcherServlet的url-pattern是/ rest / *并且我有一个RequestMapping为/ rest / js,那么为了到达页面,我必须去到主机名:port / foobar / rest / rest / js。为什么URL上有双/休息/休息?
您的想法是,您可以拥有多个DispatcherServlets
,并且您必须区分彼此。
例如,您可以让一个调度员提供@ /documents/
个文档和另一个投放图像@ /images
,然后让@RequestMapping("/whatever")
为他们提供不同的服务。
如果双rest/rest
让您感到恼火,那么您可以将调度员映射到/
...那么主机名:port / foobar / rest / js和hostname:port / foobar / json / js会返回同一页吗?
仅在您将其配置为执行此操作时。每个调度程序可以component-scan
不同的包,并为同一路径提供不同的请求映射。