Spring MVC - URL模式不起作用

时间:2017-11-21 18:37:02

标签: java spring spring-mvc web.xml url-pattern

我有以下文件:

的web.xml:

<web-app xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com xml/ns/javaee/web-app_3_0.xsd"
     version="3.0">



<display-name>To do List</display-name>

<servlet>
 <servlet-name>dispatcher</servlet-name>
 <servlet-class>
    org.springframework.web.servlet.DispatcherServlet
 </servlet-class>
 <init-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>/WEB-INF/tk-servlet.xml</param-value>
 </init-param>
 <load-on-startup>1</load-on-startup>
</servlet>

<servlet-mapping>
 <servlet-name>dispatcher</servlet-name>
 <url-pattern>/spring-mvc/*</url-pattern>
</servlet-mapping>
</web-app>

的LoginController:

package de.yellowsub.tk.mvc;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

@Controller
public class LoginController {

    @RequestMapping(value = "/login")
    @ResponseBody
    public String sayHello() {
        return "Hello World!";
    }
}

现在,如果我在URL中输入localhost:8080 / login,我可以在浏览器中看到“Hello World”,但如果我写localhost:8080 / spring-mvc / login

有什么想法吗?

如果有任何用途,这里还有tk-servlet.xml:

<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/bean/spring-beans.xsd
    http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd
    http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">

    <context:component-scan base-package="de.yellowsub" /> //I also tried "de.yellowsub.*"

    <mvc:annotation-driven />

</beans>

2 个答案:

答案 0 :(得分:0)

您需要修复Web应用程序的根上下文(spring-mvc)以修复URL

如果您使用的是Maven,可以通过在 pom.xml 中添加以下标记来修复您的战争名称:

<build>
    <finalName>spring-mvc</finalName>
</build>

然后您应该能够使用以下网址访问您的应用程序控制器:

<强> http://localhost:8080/spring-mvc/login

如果你不使用maven,请点击此链接How to set the context path of a web application in Tomcat 7.0

答案 1 :(得分:0)

根据您的评论,您已生成Spring Boot应用程序。这与Spring MVC应用程序完全不同,您不需要web.xml或tk-servlet.xml来配置它。你可以删除它们。

您可以将server.contextPath=/spring-mvc添加到a​​pplication.properties(在src / main / resources中创建)以设置上下文路径。

另外请找一个不同的教程,因为基于Spring的纯MVC应用程序与Spring Boot Web应用程序完全不同。