对于请求处理,struts 2 使用FilterDispatcher
,而 Spring 使用 Servlet(dispatcher servlet) 来分派请求。这有什么区别?我的意思是他们正在做同样的工作,处理传入的请求,但使用不同的策略,一个是使用 servlet,另一个是使用过滤器调度程序。
问问题
1191 次
1 回答
0
Struts2
and spring mvc
are different web frameworks that follow mvc
design pattern. The architecture of both differs. Since they are different frameworks, they have different ways of achieving the same thing i.e. request handling. You can read more about FilterDispatcher
here.
于 2012-08-13T04:48:07.867 回答