Spring MVC - 无法呈现视图

Posted

技术标签:

【中文标题】Spring MVC - 无法呈现视图【英文标题】:Spring MVC - unable to render view 【发布时间】:2014-11-26 17:09:25 【问题描述】:

我正在学习 spring-mvc,我使用 STS 创建了一个 crud 项目,它运行良好。

我需要创建另一个视图来测试和玩 spring:

    我在与另一个 jsp 文件 (WEB-INF/views) 相同的位置添加了一个新的 jsp 文件,名为 company.jsp 我创建了一个新控制器来处理请求:
package com.test.issa;

import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;

@Controller
public class CompanyController 

  @RequestMapping(value = "/company", method = RequestMethod.GET)
    public String GetCompany(Model model) 
      model.addAttribute("name", "Hello World!");
        return "company";
    

但是当我调用视图 http://localhost:9999/app/company 时,它给出了错误 404,我错过了什么吗?

这也是我的 servlet-context.xml:

<?xml version="1.0" encoding="UTF-8"?> <beans:beans xmlns="http://www.springframework.org/schema/mvc"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:beans="http://www.springframework.org/schema/beans"
    xmlns:context="http://www.springframework.org/schema/context" xmlns:tx="http://www.springframework.org/schema/tx"
    xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd
        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/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd">

    <!-- DispatcherServlet Context: defines this servlet's request-processing 
        infrastructure -->

    <!-- Enables the Spring MVC @Controller programming model -->
    <annotation-driven />

    <!-- Handles HTTP GET requests for /resources/** by efficiently serving 
        up static resources in the $webappRoot/resources directory -->
    <resources mapping="/resources/**" location="/resources/" />

    <!-- Resolves views selected for rendering by @Controllers to .jsp resources 
        in the /WEB-INF/views directory -->
    <beans:bean
        class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <beans:property name="prefix" value="/WEB-INF/views/" />
        <beans:property name="suffix" value=".jsp" />
    </beans:bean>

    <!-- Hibernate 4 SessionFactory Bean definition -->
    <beans:bean id="hibernate4AnnotatedSessionFactory"
        class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
        <beans:property name="dataSource" ref="dataSource" />
        <beans:property name="annotatedClasses">
            <beans:list>
                <beans:value>com.journaldev.spring.model.Person</beans:value>
            </beans:list>
        </beans:property>
        <beans:property name="hibernateProperties">
            <beans:props>
                <beans:prop key="hibernate.dialect">org.hibernate.dialect.mysqlDialect
                </beans:prop>
                <beans:prop key="hibernate.show_sql">true</beans:prop>
            </beans:props>
        </beans:property>
    </beans:bean>

    <beans:bean id="personDAO" class="com.journaldev.spring.dao.PersonDAOImpl">
        <beans:property name="sessionFactory" ref="hibernate4AnnotatedSessionFactory" />
    </beans:bean>
    <beans:bean id="personService" class="com.journaldev.spring.service.PersonServiceImpl">
        <beans:property name="personDAO" ref="personDAO"></beans:property>
    </beans:bean>
    <context:component-scan base-package="com.journaldev.spring" />

    <tx:annotation-driven transaction-manager="transactionManager"/>

    <beans:bean id="transactionManager" class="org.springframework.orm.hibernate4.HibernateTransactionManager">
        <beans:property name="sessionFactory" ref="hibernate4AnnotatedSessionFactory" />
    </beans:bean>    </beans:beans>

【问题讨论】:

尝试在控制器类下添加@RequestMapping("/") 我应该在哪里添加它,我应该删除@RequestMapping(value = "/company", method = RequestMethod.GET)? 【参考方案1】:

你只是扫描这里声明的包的组件

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

但是您的@Controller 定义在

package com.test.issa;

您需要将该包添加到component-scan,否则将不会为@Controller 注释类型创建bean,并且MVC 堆栈不会注册其处理程序方法。

或者为您的CompanyController 类型声明一个显式的&lt;bean&gt;

【讨论】:

如何为我的 CompanyController 类型声明一个明确的 @AliIssa 与您对 XML 配置中的其他 bean 执行的方式相同。 首先感谢您的帮助,它运行良好!现在要声明一个显式 ,我应该在 id、class 和内部 bean 属性中添加什么

以上是关于Spring MVC - 无法呈现视图的主要内容,如果未能解决你的问题,请参考以下文章

没有呈现视图的 Spring MVC 请求

如何在 Spring MVC 中使用 AJAX 渲染视图

如何将 Comet 与 Spring MVC 一起使用?

Google-GSON 的 Spring MVC 映射视图?

Google-GSON 的 Spring MVC 映射视图?

在 spring-mvc 应用程序中放置图像/CSS 的位置?