【发布时间】:2017-08-11 19:11:18
【问题描述】:
我是 Spring MVC 的新手,我只是在尝试一个基本的例子。但我收到 Http Stats 404 错误。我的文件如下:
这是一个 Maven 项目。
/Web-Inf/spring-mvc-demo-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"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc.xsd">
<!-- Step 3: Add support for component scanning -->
<context:component-scan base-package="springdemo" />
<!-- Step 4: Add support for conversion, formatting and validation support -->
<mvc:annotation-driven/>
<!-- Step 5: Define Spring MVC view resolver -->
<bean
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/view/" />
<property name="suffix" value=".jsp" />
</bean>
</beans>
然后我有 WEB-INF/web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
id="WebApp_ID" version="3.1">
<display-name>spring-mvc-demo</display-name>
<!-- Spring MVC Configs -->
<!-- Step 1: Configure Spring MVC Dispatcher Servlet -->
<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/spring-mvc-demo-servlet.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<!-- Step 2: Set up URL mapping for Spring MVC Dispatcher Servlet -->
<servlet-mapping>
<servlet-name>dispatcher</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
/WEB-INF/view/main-page.jsp
<html>
<body>
<h1>Welcome to home page!!!!</h1>
</body>
</html>
然后是 src/HomeController.java
package springmvcdemo;
import org.springframework.stereotype.Component;
import org.springframework.web.bind.annotation.RequestMapping;
@Component
public class HomeController {
@RequestMapping("/")
public String startPage(){
return "main-page";
}
}
我正在 Eclipse IDE 中创建一个动态 Web 项目,它是一个 Maven 项目,我尝试在其上运行它的服务器是 Tomcat 8.0.44
谁能帮我消除错误?
【问题讨论】:
-
你的
spring-mvc-demo-servlet.xml和web.xml一样对吗?请发布您的spring-mvc-demo-servlet.xml。 -
@Rosii Robinson 我更改了文件..我错误地上传了同一个文件。现在是正确的。
-
检查您的
Component-Scan。您正在扫描包com.luv2code.springdemo,然后您的控制器似乎在springdemo -
这也是错误的......我正在关注一个演示,所以即使包名正确,它仍然给出同样的错误。
-
你在调用什么
URL?
标签: java spring spring-mvc