用户点击按钮提交表单。
触发请求(request)
通过internet传输到服务器
服务器软件(如Tomcat)接受到请求
根据Web.xml的配置,将请求送到Struts2的核心拦截器
Struts2根据struts.xml的配置,找到对应的Action
Struts2根据struts.xml的配置,使用Spring最为Bean工厂,从Spring获取Action。
Spring根据applicationContext.xml的配置,实例化Action,并注入Service。
(注入的Service已经注入好了Dao,Dao已经注入好了SessionFactory,以此类推)
Struts2将请求的参数set到Action。
Struts2根据struts.xml的配置调用Action的execute方法。
(这个方法你是编写的,当然这个方法会一步步的调用Service,Service会调用Dao)
struts2根据execute方法的返回值,根据struts.xml配置,找到应该返回的JSP页面。
Tomcat实时生成Html页面
通过Internet
用户浏览器接受到Html,并显示出来。