gpt4 book ai didi

java - 使用 AlwaysUseFullPath 属性了解使用 DispatcherServlet 的 URL 映射

转载 作者:行者123 更新时间:2023-12-04 05:59:08 25 4
gpt4 key购买 nike

我试图在我的 DispatcherServlet 中配置 URL 以映射到没有扩展名的 URL。我终于明白了这一点,但我不明白为什么 URL 是这样工作的。

假设上下文为“foobar”...如果 DispatcherServlet 的 url-pattern 是/rest/* 并且我有/rest/js 的 RequestMapping,那么为了访问该页面,我必须转到主机名:端口/foobar/rest/rest/js 。为什么 URL 上有双/rest/rest?

这没有意义,因为如果我有多个 DispatcherServlets,同一个 RequestMapping 不能转到不同的 URL 吗?即如果 RequestMapping 是“/js”,并且我有一个 DispatcherServlet 设置为/rest/*,另一个设置为/json/*,那么主机名:端口/foobar/rest/js 和主机名:端口/foob​​ar/json/js 返回相同的页面?

如果 @RequestMapping 在类定义中,我根本无法获取 URL - 它仅适用于该方法。

网页.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();
}
}

最佳答案

Assuming a context of 'foobar'... if the url-pattern for the DispatcherServlet is /rest/* and I have a RequestMapping of /rest/js, then in order to get to the page, I have to go to hostname:port/foobar/rest/rest/js . Why does the URL have a double /rest/rest on it?



这个想法是你可以有多个 DispatcherServlets你必须区分一个和另一个。

例如,您可以让一名调度员提供文件@ /documents/和另一个服务图片@ /images然后有一个 @RequestMapping("/whatever")因为他们都服务于不同的事情。

如果双 rest/rest激怒你,那么你可以映射你的调度员来服务 / ·

... then wouldn't hostname:port/foobar/rest/js and hostname:port/foobar/json/js return the same page?



仅当您将它们配置为这样做时。每个调度员可以 component-scan不同的包,对同一路径有不同的请求映射。

关于java - 使用 AlwaysUseFullPath 属性了解使用 DispatcherServlet 的 URL 映射,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9131946/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com