带有 Tomcat 的 Spring MVC 仅渲染index.jsp

问题描述 投票:0回答:1

问题是,当我使用 Tomcat 运行我的应用程序时,它在浏览器中仅显示 index.jsp。但控制器不起作用。

这是我的

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-course-mvc</display-name>

  <absolute-ordering />

  <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/applicationContext.xml</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
  </servlet>

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

</web-app>

applicationContext.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">

    <context:component-scan base-package="com.myapp.spring.mvc" />

    <mvc:annotation-driven/>

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

</beans>

我的控制器:

package com.myapp.spring.mvc;

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

@Controller
public class MyController {

    @RequestMapping("/")
    public String showFirstView() {
        return "first-view";
    }
}

我的

view
所在的
webapp/WEB-INF/
中有
first-view.jsp
目录。所以看起来
webapp/WEB-INF/view/first-view.jsp

当我在

http://localhost:8080/spring_course_mvc/
上运行项目时,出现 404 错误。

有趣的是,当我添加

webapp/index.jsp
文件时,我在
http://localhost:8080/spring_course_mvc/
上看到其内容。

然后我添加了

webapp/first-view.jsp
文件和地址
http://localhost:8080/spring_course_mvc/first-view.jsp
它正在工作。

没有

webapp/index.jsp
地址
http://localhost:8080/spring_course_mvc/
会给我 404 错误。

java spring spring-mvc jsp tomcat
1个回答
0
投票

首先,您需要确保如果您使用的是Spring 5,则需要使用Tomcat 9。

如果您使用的是 Spring 6,则需要使用 Tomcat 10。 接下来您需要确保您的 web.xml 和 applicationContext.xml 位于

webapp/WEB-INF/web.xml
webapp/WEB-INF/applicationContext.xml

您需要记住的另一件事是,如果您的应用程序不会自动运行浏览器,您需要确保使用正确的上下文根值。在 Eclipse 中,您可以通过右键单击项目 > 属性 > Web 项目设置来检查。

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.