最近做一个SSH项目总结出来的一些程序执行流程
执行流程以工资管理模块为例:
1.从页面开始,工资管理触发一个action(salary!init.action:为多分支action,action名为salary,执行的方法为init()方法)
2.action交给struts2处理,读取src目录struts.xml文件,其中有个配置salary的action,如下所示:
<action name="salary" class="salaryAction">
<result name="list">/admin/salary_page.jsp</result>
</action>
3.根据class="salaryAction"交给Spring(为什么struts的action会交给spring处理呢?原因是:Struts2提供一个jar包
struts2-spring-plugin-2.1.2.jar,有个struts.properties文件,打开查找,输入auto查找有这样一段话:
### specifies the autoWiring logic when using the SpringObjectFactory.
### valid values are: name, type, auto, and constructor (name is the default)
struts.objectFactory.spring.autoWire = name。也就是有了上面那个jar包之后,根据name自动提交给Spring处理),
读取Spring容器的配置文件/WebRoot/WEB-INF/applicationContext.xml文件。
<bean name="salaryAction" class="com.bu3g.ssh.web.action.SalaryAction">
<property name="empService">
<ref local="empService" />
</property>
</bean>
根据applicationContext.xml配置文件找到com.bu3g.ssh.web.action.SalaryAction类,其中有一个属性empService,并提供了
setEmpService()方法,由applicationContext.xml文件得知该empService对象由Spring容器依赖注入,set注入。
由<ref local="empService" />这个可以知道SalaryAction的属性empService引用了本地的(即applicationContext.xml文件中
配置的一个bean)
<bean id="empService"
class="com.bu3g.ssh.service.impl.EmployeeServiceImpl">
<property name="empDAO" ref="empDAO" />
<property name="payDAO" ref="payDAO" />
</bean>
4.取得empService对象(接口对接口实现类的一个引用)后,调用它的getPager方法。后面的就是访问DAO了,一长串省略号代替。。。。。。。。。。。。。。