gpt4 book ai didi

java - Spring MVC - URL 模式不起作用

转载 作者:太空宇宙 更新时间:2023-11-04 10:54:53 25 4
gpt4 key购买 nike

我有以下文件:

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>

登录 Controller :

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>

最佳答案

根据您的评论,您已经生成了一个 Spring Boot 应用程序。这与 Spring MVC 应用程序有很大不同,您不需要 web.xml 或 tk-servlet.xml 来配置它。您可以将两者都删除。

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

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

关于java - Spring MVC - URL 模式不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47420330/

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