HTTP 状态 404 – 在 Tomcat 服务器上找不到
HTTP Status 404 – Not Found on Tomcat server
我正在为 Web 开发人员在 Eclipse 版本 4.9.0 Java EE IDE 上创建新的 spring mvc 动态 Web 项目。我正在设置一个新的服务器 Tomcat 版本 9.0.8。
当我 select hello.jsp
和 right-click ->Run As -> Run on Server
时,hello.jsp
工作正常,我访问 helo.jsp
。但是当我在服务器上 select 项目根文件夹和 right-click ->Run As -> Run
时,它会显示 HTTP Status 404
和描述:
The origin server did not find a current representation for the target resource or is not willing to disclose that one exists.'
这是我的 Web.xml:
<web-app id = "WebApp_ID" 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">
<display-name>Spring MVC Application</display-name>
<servlet>
<servlet-name>HelloWeb</servlet-name>
<servlet-class>
org.springframework.web.servlet.DispatcherServlet
</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>HelloWeb</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
</web-app>
这是我的完整 HelloWeb-servlet.xml:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns = "http://www.springframework.org/schema/beans"
xmlns:context = "http://www.springframework.org/schema/context"
xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation = "http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-4.3.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-4.3.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc.xsd">
<context:component-scan base-package="com.tutorialspoint"/>
<mvc:annotation-driven/>
<bean name="jspViewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WebContent/views/"></property>
<property name="suffix" value=".jsp"></property>
</bean>
</beans>
这是我的控制器:
package com.mypackage;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.ui.ModelMap;
@Controller
public class HelloController {
@RequestMapping(path="/hello",method = RequestMethod.GET)
public String printHello(ModelMap model) {
model.addAttribute("message", "Hello Spring MVC Framework!");
return "hello";
}
}
这是我的目录结构:
https://imgur.com/CHKEsJo
这是我的 hello.jsp
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>Hello World</title>
</head>
<body>
<h2>done!!!</h2>
<h2>${message}</h2>
</body>
</html>
我的 server.xml 在 Tomcat 版本 9.0.8 上保持原样。我没有改变任何东西。我唯一更改的是 HTTP/1.1 端口、AJP/1.3 端口和 Tomcat 管理端口。
这里有什么问题,这是什么原因?我不知道为什么。谁能指出我的错误?
尝试将文件夹 views
移动到 /WEB-INF/
下,然后相应地更改 HelloWeb-servlet.xml
。
此外,请确保您正在使用此 url 访问资源:
我正在为 Web 开发人员在 Eclipse 版本 4.9.0 Java EE IDE 上创建新的 spring mvc 动态 Web 项目。我正在设置一个新的服务器 Tomcat 版本 9.0.8。
当我 select hello.jsp
和 right-click ->Run As -> Run on Server
时,hello.jsp
工作正常,我访问 helo.jsp
。但是当我在服务器上 select 项目根文件夹和 right-click ->Run As -> Run
时,它会显示 HTTP Status 404
和描述:
The origin server did not find a current representation for the target resource or is not willing to disclose that one exists.'
这是我的 Web.xml:
<web-app id = "WebApp_ID" 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">
<display-name>Spring MVC Application</display-name>
<servlet>
<servlet-name>HelloWeb</servlet-name>
<servlet-class>
org.springframework.web.servlet.DispatcherServlet
</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>HelloWeb</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
</web-app>
这是我的完整 HelloWeb-servlet.xml:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns = "http://www.springframework.org/schema/beans"
xmlns:context = "http://www.springframework.org/schema/context"
xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation = "http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-4.3.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-4.3.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc.xsd">
<context:component-scan base-package="com.tutorialspoint"/>
<mvc:annotation-driven/>
<bean name="jspViewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WebContent/views/"></property>
<property name="suffix" value=".jsp"></property>
</bean>
</beans>
这是我的控制器:
package com.mypackage;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.ui.ModelMap;
@Controller
public class HelloController {
@RequestMapping(path="/hello",method = RequestMethod.GET)
public String printHello(ModelMap model) {
model.addAttribute("message", "Hello Spring MVC Framework!");
return "hello";
}
}
这是我的目录结构: https://imgur.com/CHKEsJo
这是我的 hello.jsp
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>Hello World</title>
</head>
<body>
<h2>done!!!</h2>
<h2>${message}</h2>
</body>
</html>
我的 server.xml 在 Tomcat 版本 9.0.8 上保持原样。我没有改变任何东西。我唯一更改的是 HTTP/1.1 端口、AJP/1.3 端口和 Tomcat 管理端口。
这里有什么问题,这是什么原因?我不知道为什么。谁能指出我的错误?
尝试将文件夹 views
移动到 /WEB-INF/
下,然后相应地更改 HelloWeb-servlet.xml
。
此外,请确保您正在使用此 url 访问资源: