我有一个使用Spring并具有以下配置的应用程序
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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">
<mvc:annotation-driven/>
<mvc:resources mapping="/*" location="/" />
<context:component-scan base-package="controller" />
这是整个web.xml文件
<web-app>
<servlet>
<servlet-name>springrest</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>springrest</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
应用程序在localhost:8080 / web上运行得非常好,但我想将其更改为localhost:8080 / web / rest,为此我尝试更改网址模式
<servlet-mapping>
<servlet-name>springrest</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
到
<servlet-mapping>
<servlet-name>springrest</servlet-name>
<url-pattern>/rest</url-pattern>
</servlet-mapping>
但遗憾的是它不起作用,我做错了什么?
答案 0 :(得分:0)
通过您的更改,您将DispatcherServlet拦截的URL过滤为仅以/rest
开头的URL而不是之前的所有/
,因此您只需减少Spring处理的URL数量,不改变映射。这不是你想要的,我担心不可能在一个层面上下移&#34; (从/web
到/web/rest
)一个带有一些web.xml配置的java web应用程序,你应该在Spring配置中重写你的映射(/
现在是/rest
,什么/foo
现在是/rest/foo
)。