Spring MVC 与 Spring WebFlow
我正在为我即将启动的一些社交网络项目进行一些研究。我以前使用过Spring,但现在无法做出决定,因为有太多的选择可供选择。
我想在我的视图上使用 JSF2.0 组件,据我所知,webflow 是一种很好的方法,但它不是必须的。
webflow 相对于 Spring web mvc 有什么好处?我对 WF 的第一印象是它让事情变得太复杂了。
提前致谢
I am doing some research for some social network project which i am going to start. I used Spring before yet i cant make a decision at the moment since there are way too many options to choose.
I would like to use JSF2.0 components on my views , and as far as i figure out webflow is a nice way of doing it yet it is not a must.
What benefits does webflow give over Spring web mvc ? My first impression about WF is it makes things way too complicated.
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Webflow 是关于 Web 应用程序中的流。
想象一个具有多个页面的向导,然后 Web Flow 帮助您连接这些页面(在一个流中),并提供一个变量范围来将变量与该流连接。
而 Spring MVC “仅”关于独立页面。
Webflow is about flows in web application.
Think of a Wizzard with several Pages, then Web Flow helps you to connect this Pages (in a flow), and provides a variable scope to connect variable with this flow.
While Spring MVC is "only" about isolated Pages.