Spring包装Struts的动作说法正确的是()。
A: Action配置的type属性还是指向自己的Action类
B: Action配置的type属性不需要指向自己的Action类,但是Action要在Spring配置文件中配置
C: Action配置的type属性一定要指向Spring提供的代理类,但是Action要在Spring配置文件中配置
D: Action配置的type属性必须指向Spring提供的代理类,可以利用Spring提供的中央处理器来处理,但是Action要在Spring配置文件中配置
A: Action配置的type属性还是指向自己的Action类
B: Action配置的type属性不需要指向自己的Action类,但是Action要在Spring配置文件中配置
C: Action配置的type属性一定要指向Spring提供的代理类,但是Action要在Spring配置文件中配置
D: Action配置的type属性必须指向Spring提供的代理类,可以利用Spring提供的中央处理器来处理,但是Action要在Spring配置文件中配置
举一反三
- action 元素的method属性用于配置该Action类中的一个
- 在Struts.xml文件中如果配置Action时没有指定action元素的class属性时,系统会( )。 A: 自动使用Action接口作为Action处理类 B: 提示创建Action类 C: 抛出异常 D: 自动使用ActionSupport类作为Action处理类
- 下面信息不在Struts2配置文件中配置的是 A: FormBean配置信息 B: Action转发路径 C: 引用的资源文件 D: Action访问路径
- 在Struts.xml文件中如果配置Action时没有指定action元素的class属性时,系统会
- 在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提供