浏览器发送请求。 核心控制器Struts Prepare And Execute Filter根据请求决定调用合适的Action。 S.truts2的拦截器链自动对请求应用通用功能。 回调Action的execute方法。 A.ction的execute方法处理结果将被输出到浏览器中。
问答题用Struts2开发和用jsp、servlet开发有什么区别?
单项选择题在Action类中定义的属性使用修饰符(),属性和属性对应的getter和setter方法使用修饰符public。
A.private B.Public C.protected D.default
单项选择题在Struts2的标签中用来设定条件的属性是()
A.witch B.test C.if D.value
单项选择题在结点中,用于定义拦截器栈的结点是()
A.Interceptor B.interceptor-stack C.interceptor-stacks D.interceptor-refs
单项选择题在Struts2的Action类(BookAction)中存在bookList处理请求的方法,使用动态方法调用BookAction类中bookList方法,正确的是()
A.bookAction.bookList B.bookAction*bookList C.bookAction+bookList D.bookAction!bookList