2

我是 Spring 的新手并试图理解 web.xml 文件。我使用 STS 创建了一个新的 SPring MVC Maven 项目,

我在 application-config.xml 与 mvc-config.xml 文件之间有点困惑......

mvc-config.xml 包含 servlet 映射,但 application-config 文件包含什么信息..

<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath:spring/application-config.xml</param-value>
</context-param>

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


<!--
    - Servlet that dispatches request to registered handlers (Controller implementations).
-->
<servlet>
    <servlet-name>dispatcherServlet</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <init-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/mvc-config.xml</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
</servlet>

<servlet-mapping>
    <servlet-name>dispatcherServlet</servlet-name>
    <url-pattern>/</url-pattern>
</servlet-mapping>
4

1 回答 1

2

通常 mvc 配置(/WEB-INF/mvc-config.xml)包含控制器层所需的 bean(例如控制器、视图解析器 ...) 应用程序配置(类路径:spring/application-config.xml) xml) 用于模型层(在这里你可以定义 daos、服务...)

于 2013-07-28T19:50:00.143 回答