Struts概述

Struts框架中的组件
  框架中所使用的组件:
  ActionServlet 控制器
  ActionClass 包含事务逻辑
  ActionForm 显示模块数据
  ActionMapping 帮助控制器将请求映射到操作
  ActionForward 用来指示操作转移的对象
  ActionError 用来存储和回收错误
  Struts标记库 可以减轻开发显示层次的工作

-------------------------------------------------------------

actionServlet
action
actionForm
actionMapping
actionForward

<%@ taglib uri="/tags/struts-bean" prefix="bean" %>
<%@ taglib uri="/tags/struts-html" prefix="html" %>
<%@ taglib uri="/tags/struts-logic" prefix="logic" %>
<%@ taglib uri="/tags/struts-nested" prefix="nested" %>
<%@ taglib uri="/tags/struts-tiles" prefix="tiles" %>


build.xml
web.xml
struts-config.xml
struts-config-other.xml
tiles.xml
validator.xml

扩展点
plugin
actionServlet
action

 

Craig McClanahan
http://www.techcn.com.cn/index.php?doc-view-132020.html#3

你可能感兴趣的:(struts)