带有JSP的Spring-未调用Controller类

时间:2018-09-21 21:44:14

标签: java spring spring-mvc jsp servlets

我真的需要帮助。我正在练习使用JSP开发基于Spring MVC的应用程序。我从基础开始,尝试打印“ page.jsp ”内容,但它总是打印“ index.html ”内容。如果删除“ index.html ”,则会出现404错误。似乎没有对Controller类进行扫描。我被困在这里,没有找到任何解决方案。以下是我的代码:

web.xml

<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee 
         http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
         version="3.1">
  <display-name>Archetype Created Web Application</display-name>

    <!-- CONFIGURING FRONT CONTROLLER -->
    <servlet>
        <servlet-name>dispatcher</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>

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

</web-app>

PageController.java

package net.ritz.onlineshopping.controller;

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

@Controller
public class PageController {

    @RequestMapping(value= {"/","/home","/index"})
    public ModelAndView index() {   
        ModelAndView mv = new ModelAndView("page");
        mv.addObject("greeting", "Welcome to Spring Web MVC");
        return mv;
    }
}

page.jsp

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Online Shopping</title>
</head>
<body>
    ${greeting}
</body>
</html>

dispatcher-servlet.xml

    <?xml version="1.0" encoding="UTF-8"?>

<beans xmlns = "http://www.springframework.org/schema/beans"
   xmlns:mvc="http://www.springframework.org/schema/mvc"
   xmlns:context="http://www.springframework.org/schema/context"
   xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance"
   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-3.0.xsd">

   <mvc:annotation-driven  />
   <context:component-scan base-package="net.ritz.onlineshopping.controller"/>

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



   </beans>

index.html

<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
This is Index
</body>
</html>

当我在浏览器中输入此URL时: http://localhost:8080/onlineshopping/

我得到以下输出,它是index.html,但它应该映射到page.jsp: enter image description here

下面是我的项目结构: enter image description here

3 个答案:

答案 0 :(得分:0)

仔细检查您的映射,看看它是否有效。您可以调试或添加更多日志以确保:

    @RequestMapping(value= {"/","/home","/index"})
    public ModelAndView index() {   
        ModelAndView mv = new ModelAndView("page");
        mv.addObject("greeting", "Welcome to Spring Web MVC");
        return mv;
    }

基本上,没有@Controller的情况是没有用的,因为它除了占用内存外什么也不做。它不会绑定到传入的请求,而只是在应用程序上下文中徘徊。它只是所有其他bean一样的另一个bean,并没有对其进行任何特殊处理。 (Spring的最近版本已弃用,但注册了处理@Controller的DefaultAnnotationHandlerMapping,但已弃用了)。

Spring support for @Controller given by <context:component-scan /> vs <mvc:annotation-driven>

尝试在您的设置中添加以下配置。

<context:annotation-config/> <!-- is used to activate the annotation for beans -->
<mvc:annotation-driven/>

答案 1 :(得分:0)

您可以尝试以下解决方案之一。

检查您的xml配置,如果存在,则是否存在任何<welcome-file-list>index.html</welcome-file-list>,然后将其删除。

OR

尝试删除index.html文件,并检查控制器是否返回jsp页面。

OR

创建另一个端点,并检查控制器是否返回如下所示的jsp页面。

@RequestMapping(value="/test")
    public ModelAndView test() {   
        ModelAndView mv = new ModelAndView("page");
        mv.addObject("greeting", "Welcome to Spring Web MVC");
        return mv;
    }

答案 2 :(得分:0)

经过大量研究,我找到了解决这个烦人问题的方法。因此,右键单击项目,然后单击属性。选择“部署程序集”,然后单击“添加”按钮。选择“ Java构建路径条目”,单击“下一步”,然后选择“ Maven依赖关系”,然后单击“确定”。右键单击“服务器”部分下的Tomcat服务器,然后选择“清理”。再次右键单击Tomcat服务器,然后选择“发布”。我在Tomcat服务器上运行了我的项目,但404错误未解决。我能够打印page.jsp内容!!