热门面试题与答案和在线测试
面向面试准备、在线测试、教程与实战练习的学习平台

通过聚焦学习路径、模拟测试和面试实战内容持续提升技能。

WithoutBook 将分主题面试题、在线练习测试、教程和对比指南整合到一个响应式学习空间中。

面试准备

模拟考试

设为首页

收藏此页面

订阅邮箱地址

Struts 面试题与答案

Test your skills through the online practice test: Struts Quiz Online Practice Test

相关差异对比

相关差异对比

Struts 1 vs Struts 2Struts 1.1 vs Struts 1.2Struts 1.2 vs Struts 1.3
Struts vs JSFStruts vs Spring

问题 71. What is an Action Class?

The ?Action Class? is part of the ?Model? and is a wrapper around the business logic.

The purpose of the ?Action Class? is to translate the HttpServletRequest to the business logic.

To use the ?Action?, we need to subclass and overwrite the execute() method.

All the database and business processing is done in the ?Action? class.

It is advisable to perform all the database related work in the ?Action? class.

The ActionServlet (command) passes the parameterized class to ActionForm using the execute() method.

The return type of the execute method is ActionForward which is used by the Struts Framework to forward the request to the file according to the value of the returned ActionForward object.

这有帮助吗? 添加评论 查看评论
 

问题 72. What is an ActionForm?

An 'ActionForm' is a JavaBean that extends org.apache.struts.action.ActionForm.
ActionForm maintains the session state for web application and the ActionForm object is automatically populated on the server side with data entered from a form on the client side.

这有帮助吗? 添加评论 查看评论
 

问题 73. Describe the details of XML files used in the Validator Framework?

The Validator Framework uses two XML configuration files

1) validator-rules.xml and

2) validation.xml.

The validator-rules.xml defines the standard validation routines.

These are reusable and used in validation.xml to define the form specific validations.

The validation.xml defines the validations applied to a form bean.

这有帮助吗? 添加评论 查看评论
 

问题 74. How would you display ?validation fail? errors on a JSP page?

Following tag displays all the errors:
 <html:errors/>

这有帮助吗? 添加评论 查看评论
 

问题 75. How can one enable front-end validation based on the xml in validation.xml?

The
<html:javascript>
 tag allows front-end validation based on the xml in validation.xml.

For example the code:

generates the client side JavaScript for the form "logonForm" as defined in the validation.xml file.
The <html:javascript> when added in the JSP file generates the client side validation script.

这有帮助吗? 添加评论 查看评论
 

用户评价最有帮助的内容:

版权所有 © 2026,WithoutBook。