Spring与Struts的区别

1.实现机制:

struts是基于过滤器实现,springMVC是基于Servlet

2.运行速度:

struts是多例的,springMVC是单例的(每一次请求,都会创建一个Action对象

请求来了以后,struts2创建多少个对象:ActionContext,valuestack,UAction,ActionSuport,ModelDriven。 同一个Controller请求,只会创建一个Controller

)springMVC比struts速度快

3.参数封装来分析:

struts基于属性进行封装,Action有参数属性。

springMVC基于方法封装,参数是写在Controller的方法里。

你可能感兴趣的:(Spring与Struts的区别)