java - springMVC配置的controller无法返回jsp文件

 沥胆披肝365_781 发布于 2022-10-25 07:52

当启动完tomcat后,它首先展示的是index.jsp ,当我输入http://localhost:8080/Spring_no_2/时,出现

HTTP Status 404 – Not Found

Type Status Report

Description The origin server did not find a current representation for the target resource or is not willing to disclose that one exists.
  1. 根据spring in action中的springMVC这一章中的demo进行测试,环境是mac下的Ideallij,jkd1.8,tomcat9

  2. 配置好了springMVC,相关的xml文件并且启动tomcat后(省略了配置静态资源和SpitterService类),无法通过访问url使controller返回在WEB-INF/views中的jsp文件

以下是代码文件

web.xml


http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
         version="3.1">

    
        contextConfigLocation
        /WEB-INF/applicationContext.xml
    

    
        org.springframework.web.context.ContextLoaderListener
    
    
        spitter
        org.springframework.web.servlet.DispatcherServlet
        1
    
    
        spitter
        /
    

spitter-servlet.xml


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



    
    
    

    
    

    
    
    
        
        
    

controller

package com.springmvc.controller;

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

/**
 * Created by han on 29/3/2017.
 */
@Controller
public class HomeController {
//    public static final int DEAFAULT_SPITTLES_PER_PAGE = 25;


    public HomeController() {
        System.out.println("-------HomeController init-------");
    }

    @RequestMapping("/")
    public String showHomePage() {

        System.out.println("-------showHomePage Method show-------");


        return "home";
    }
}

我的文件结构是

请问为什么无法使home.jsp呈现出来?

4 个回答
  • 默认项目结构web层是使用的webapp目录,你可以看下部署到tomcat的项目的WEB-INF/views目录下是否真的存在home.jsp?

    2022-10-26 14:30 回答
  • 先看看tomcat配置的对不对。
    localhost:8080可以访问成功吗?
    再看看showHomePage方法

    2022-10-26 14:30 回答
  • 亲,-------showHomePage Method show-------后台有没有打印出来?

    2022-10-26 14:30 回答
  • 找到了问题所在了,目录,tomcat配置都对。
    但是因为在web.xml中的以下代码

     <context-param>
            <param-name>contextConfigLocation</param-name>
            <param-value>/WEB-INF/applicationContext.xml</param-value>
        </context-param>
    
        <listener>
            <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
        </listener>

    导致了监听的配置文件不读取spitter-servlet.xml中的配置,
    解决方法有两个:

    第一:

    是在 <context-param>中加入spitter-servlet.xml的地址,这样spitter-servlet.xml和applicationContext.xml中的Bean等配置都会被读取到。
    在Spring in action 4th edition中说到Whereas DispatcherServlet is expected to load beans containing web components such as controllers, view resolvers, and handler mappings, ContextLoaderListener is expected to load the other beans in your application. These beans are typically the middle-tier and data-tier components that drive the back end of the application.
    两个不同的配置文件是为了应对不同部分的配置而设置的

    第二:

    就是删除以上代码的配置。会自动读取spitter-servlet.xml中的配置。
    
    
    
    2022-10-26 14:30 回答
撰写答案
今天,你开发时遇到什么问题呢?
立即提问
热门标签
PHP1.CN | 中国最专业的PHP中文社区 | PNG素材下载 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有