gpt4 book ai didi

xml - 当 Spring MVC 项目在 Eclipse 上运行时,Tomcat 试图打开 xml 文件

转载 作者:行者123 更新时间:2023-11-28 22:32:04 26 4
gpt4 key购买 nike

当我从 eclipse 运行它时,我得到一个 404 请求的资源()不可用并且在地址栏中我有 http://localhost:8080/SpringMVCTest/web.xmlhttp://localhost:8080/SpringMVCTest/springMVCTest-servlet.xml。为什么要尝试打开 xml 文件?

这是 web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
<display-name>SpringMVCTest</display-name>

<servlet>
<servlet-name>springMVCTest</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>

<servlet-mapping>
<servlet-name>springMVCTest</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>

</web-app>

这是springMVCTest-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:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:p="http://www.springframework.org/schema/p"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd">
<mvc:annotation-driven/>
<mvc:resources mapping="/resources/**" location="/resources" />
<context:component-scan base-package="/"></context:component-scan>

<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/jsp/"></property>
<property name="suffix" value=".jsp"></property>
</bean>

</beans>

这是 Controller

import java.util.Map;

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



@Controller
public class SpringMVCTest {

@RequestMapping({"/","/home"})
public String showHomePage(Map<String, Object> model) {
model.put("name", "Jess");
return "home";
}
}

最佳答案

我对此投下了阴影:
您正在右键单击您的 xml 文件并选择运行

它没有其他方法尝试打开 xml 文件。我说得对吗?

已更新
将这些添加到您的 web.xml

<welcome-file-list>
<welcome-file>index.jsp</welcome-file> <!-- Your index page -->
</welcome-file-list>

然后再次运行。

关于xml - 当 Spring MVC 项目在 Eclipse 上运行时,Tomcat 试图打开 xml 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11863504/

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