6

我已经开始学习 Spring MVC 阅读本教程:http: //viralpatel.net/blogs/spring-3-mvc-create-hello-world-application-spring-3-mvc/

好的,这对我来说很清楚。

在此示例中,我有web.xml文件来配置我的 Web 应用程序:

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://java.sun.com/xml/ns/javaee"
    xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee    /web-app_2_5.xsd"
id="WebApp_ID" version="2.5">

<display-name>Spring3MVC</display-name>
<welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
</welcome-file-list>

<servlet>
    <servlet-name>spring</servlet-name>
    <servlet-class>
        org.springframework.web.servlet.DispatcherServlet
    </servlet-class>
    <load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
    <servlet-name>spring</servlet-name>
    <url-pattern>*.html</url-pattern>
</servlet-mapping>

而用于配置mu DispatcherServlet的spring-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:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans

http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd">

<context:component-scan
    base-package="net.viralpatel.spring3.controller" />

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

而且,正如您在上一个链接中看到的那样,我只有一个控制器类来处理对“/hello” URL 的 HTTP 请求......好吧......这对我来说很清楚......

在此示例旁边,我通过 STS\Eclipse 中的相关模板项目创建了一个新的 Spring MVC 项目。

这个例子与前一个例子非常相似:我总是有 web.xml 文件来配置我的 web 应用程序,一个文件来配置 DispatcherServlet 和一个处理 HTTP 请求的控制器类。

但是有一些我无法理解的区别。

这是我的web.xml配置文件:

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">

<!-- The definition of the Root Spring Container shared by all Servlets and Filters -->

<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>/WEB-INF/spring/root-context.xml</param-value>
</context-param>


<!-- Creates the Spring Container shared by all Servlets and Filters -->

<listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>

<!-- Processes application requests -->
<servlet>
    <servlet-name>appServlet</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <init-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/spring/appServlet/servlet-context.xml</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
</servlet>

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

这是servlet-context.xml文件(配置我的 DispatcherServlet 的配置文件):

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

<!-- DispatcherServlet Context: defines this servlet's request-processing infrastructure -->
<context:component-scan base-package="com.mycompany.maventestwebapp" />
<!-- 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>

好的,如您所见,两个示例的配置文件存在一些差异:

在 STS\Eclipse 创建的项目中,在servlet-context.xml文件中,我有这些配置在我发布的第一个示例中不存在:

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

好的......我已经阅读了很多关于这个配置标签的文档:意味着你可以定义 spring beans 依赖项,而不必实际在 xml 中指定一堆元素或实现一个接口或扩展一个基类。当 spring 启动时,它会读取其 xml 配置文件并查找 Foo 被标记为 @Controller 它知道该类是一个控制器并将其视为控制器。默认情况下,spring 假定它应该管理的所有类都在 beans.xml 文件中明确定义。然后是组件扫描告诉 Spring 它应该在类路径中搜索 com.mycompany.maventestweapp 下所有类的标记,并查看每个类以查看它是否具有 @Controller、@Repository、@Service 或 @Component 以及是否然后 Spring 将向 bean 工厂注册该类,就像您输入了 xml 配置文件一样。BLABLABLA ETCETCETC BLABLA

好的,这对我来说绝对清楚!我认为我没有问题可以理解为什么我的第二个示例的 DispatcherServler 配置文件中有注释驱动标签,这一点很清楚。

问题是要了解为什么我的第一个示例的 DispatcherServlet 配置文件中没有此标记以及为什么它运行良好如果我尝试从 servlet-context.xml 文件中删除此标记(在我的第二个示例中),这不会运行并进入错误说我:HTTP 状态 404 -在堆栈跟踪中我有:WARN:org.springframework.web.servlet.PageNotFound - 在 DispatcherServlet 中找不到带有 URI [/maventestwebapp/] 的 HTTP 请求的映射,名称为 ' appServlet'

我认为这是合理的行为,因为 Spring 没有启用注释支持,所以没有注册我的控制器类(使用注释驱动并用 @Controller 注释我的控制器类是如果我在 bean.xml 中明确定义了这个类文件),所以不能使用这个 bean 的方法来处理 HTTP 请求......好吧......这听起来不错......

但是为什么在第一个示例中没有注释驱动的标签? 我没有注释驱动的标签(所以我没有启用注释来声明什么类是 Spring bean,例如控制器)并且我没有在 beans.xml 文件中明确声明这个类......所以不应该当我删除注释驱动标签时,第二个示例不起作用......但它工作:-/

我要疯了才能理解为什么...

拜托,你能帮帮我吗?

非常感谢

安德烈亚

4

1 回答 1

4

<mvc:annotation-driven>是一个提供附加服务的辅助标签:

  • 注册默认处理程序映射
  • 消息转换(例如将控制器中返回的对象转换为JSON)
  • JSR 303 验证(@Valid 注解)
  • 转换服务(如果指定了转换器,那么控制器将能够将实体作为参数,即来自请求的文本 id 将通过 MVC 层转换为实际的业务对象。其他对象如日期、枚举等也是如此.)
  • 也许在新版本的 Spring 中会添加更多的特性。

它是用org.springframework.web.servlet.config 包中的AnnotationDrivenBeanDefinitionParser实现的

如果您有适当的映射(如果需要,可以显式添加所需的 bean ),您的简单控制器不需要工作。但是,如果您想做一些或多或少的高级工作,例如 JSR 303 验证、使用 JSON 实现 REST 服务、为 MVC 注册转换服务,则此标签非常有用,因为它将这些服务的配置保存在一个地方.

这就是为什么它被包含在 Spring 模板项目中的原因(模板项目是开发 Spring 应用程序的起点(因此您可以直接输入控制器方法返回@Responsebody的值或将转换器添加到 MVC)而不仅仅是一个示例对于春季学习者)。

另请注意,处理程序映射配置在 Spring 3.1 中发生了更改

在 Spring 3.1 之前,类型和方法级别的请求映射在两个单独的阶段进行检查——首先由 DefaultAnnotationHandlerMapping 选择控制器,然后由 AnnotationMethodHandlerAdapter 缩小实际调用的方法。

于 2012-12-02T21:08:25.220 回答