Struts1.x学习

Struts实现的MVC框架

 

 Struts1.x执行的顺序为:

  1. web.xml(ActionServlet的Servlet的装载)
  2. struts-config描述的action
  3. ActionForm---reset()方法
  4. 提交
  5. ActionServlet-----*.do
  6. Action的分配
  7. ActionForm的装载
  8. setXXX()方法的调用
  9. validate()方法的调用
  10. Action的ActionForm execute()方法调用--------(核心)业务操作
  11. forword()的转向

你可能感兴趣的:(mvc,框架,Web,struts,servlet)