在web.xml中进行创建Spring Application Context配置错误()
A: 必须配置contextConfigLocation应用初始化参数,以告知系统Spring Application Context配置文件的位置
B: 如果不配置contextConfigLocation应用初始化参数,系统会根据默认的名称和地址“/WEB-INF/applicationContext.xml”加载Spring配置文件
C: 必须配置org.springframework.web.context.ContextLoaderListener类监听器,以创建Spring Application Context
D: org.springframework.web.context.ContextLoaderListener类由Spring提供
A: 必须配置contextConfigLocation应用初始化参数,以告知系统Spring Application Context配置文件的位置
B: 如果不配置contextConfigLocation应用初始化参数,系统会根据默认的名称和地址“/WEB-INF/applicationContext.xml”加载Spring配置文件
C: 必须配置org.springframework.web.context.ContextLoaderListener类监听器,以创建Spring Application Context
D: org.springframework.web.context.ContextLoaderListener类由Spring提供
举一反三
- 关于Spring配置文件,说法正确的是(2项) A: Spring配置文件必须命名为applicationContext.xml B: Spring配置文件可以有多个 C: Spring必须位于类路径下 D: ContextLoaderListener监听器默认在WEB-INF下寻找Spring配置文件
- 在web.xml文件中配置Spring框架,下面配置正确的是()。 A: config/WEB-INF/classes/applicationContext.xml B: servletConfig/WEB-INF/classes/applicationContext.xml C: contextconfig/WEB-INF/classes/applicationContext.xml D: contextConfigLocation/WEB-INF/classes/applicationContext.xml
- 下列选项,对web.xml配置文件中的可配置项描述错误的是( )。 A: 使用元素加载Spring配置文件application-service.xml和Spring整合Mybatis的配置文件application-dao.xml B: 配置Spring容器加载的监听器 C: 配置Spring MVC的前端控制器 D: 配置Spring MVC扫描的包路径和注解驱动
- 以下关于Spring配置文件说法不正确的是() A: Spring只能有一个配置文件 B: Spring可以有多个配置文件 C: Spring的配置文件名必须是“applicationContext” D: Spring的配置文件名不必是“applicationContext”
- 下列关于Spring配置文件的说法不正确的是( )。 A: 把applicationContext.xml文件放到src目录下,Spring也可以读到 B: Spring默认是读取/WEB-INF/applicationContext.xml配置文件 C: Spring的配置文件可以配置在类路径下,并可以重命名,但是需要在web.xml文件中指定 D: 可以通过在web.xml中的<context-param><param-name>和<param-value>进行指定Spring配置文件