24、(2分) 以下哪个文件是Spring MVC的基本配置文件? A. web.xml В. pom.xml C springmvc.xml D. log4j.properties
时间: 2024-03-25 09:39:20 浏览: 84
项目配置文件( spring-mvc.xml spring-mybatis.xml web.xml log4j.properties)
选项C,springmvc.xml是Spring MVC的基本配置文件。在Spring MVC中,我们需要使用一个配置文件来配置Spring MVC框架和应用程序的相关属性,例如视图解析器、拦截器、处理器映射器等。这个配置文件通常被称为Spring MVC配置文件,一般命名为springmvc.xml。在该文件中,我们可以使用Spring的XML命名空间和标签来配置Spring MVC框架和应用程序。例如,以下是一个简单的Spring MVC配置文件:
```
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
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.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<context:component-scan base-package="com.example"/>
<mvc:annotation-driven/>
<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/views/"/>
<property name="suffix" value=".jsp"/>
</bean>
</beans>
```
在以上示例中,我们使用了context命名空间来扫描指定包下的组件,使用mvc命名空间来启用Spring MVC注解支持,使用bean标签来定义一个视图解析器。因此,springmvc.xml是Spring MVC的基本配置文件。选项A中的web.xml文件是Servlet应用程序的部署描述文件,其中可以配置Servlet、Filter、Listener等Web组件,但不是Spring MVC的基本配置文件;选项B中的pom.xml文件是Maven项目的配置文件,其中可以配置项目的依赖关系、插件、构建等信息,与Spring MVC无关;选项D中的log4j.properties文件是Log4j日志框架的配置文件,与Spring MVC无关。
阅读全文