GWT + Eclipse Virgo OSGi 上的 Spring MVC
我正在 GWT 上迈出第一步。我想在使用 Spring MVC 生成的 JSP 上运行我的 GWT 应用程序。 Spring MVC 托管在 Eclipse virgo 上,它提供了 OSGi 上下文。
那么:
如何同时使用 GWt 和 spring MVC? (我想我必须在jsp中包含js,对吗?)
在服务器上使用GWT调试器+ spring MVC? (午餐 2 个服务器?一个用于 GWT,另一个用于 Virgo?)
I'm making my first steps on GWT. I want to run my GWT application on JSP that are generated with spring MVC. Spring MVC is hosted on Eclipse virgo which provides an OSGi context.
So :
How can I use GWt and spring MVC at the same time ? (I guess that I must include js in a jsp right ?)
Use GWT debugger + spring MVC on server ? (Lunch 2 servers ? one for GWT and the other for Virgo ?)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
GWT 应用程序通常作为单页应用程序运行,这意味着页面不会重新加载(浏览器中的 URL 始终相同 - 除了 # 后面的部分)。例如,这就是 Gmail 的工作原理(查看浏览器中的 URL)。
Spring MVC 是一个经典的 Web 应用程序 - 每次点击页面都会重新加载一个新页面。
从这个意义上说,Spring MVC 和 GWT 不能很好地协同工作。你可以把它们硬塞在一起,但这并不是一个自然的契合。
GWT apps are normally run as one-page apps, meaning that the page is not reloaded (URL in your browsers is always the same - except for the part after #). For example this is how Gmail works (look at the URL in your browser).
Spring MVC is a classical web app - on every click page is reloaded with a new page.
In this sense Spring MVC and GWT do not work well together. You could shoehorn them together, but this would not be a natural fit.