OSGI 的 MVC Web 容器?
由于我对 servlet+jsp 不了解,是否有一个 Web 容器不处理 OSGI 的 servlet?
最好是某种 MVC Web 框架。例如,微软有 ASP.NET-MVC,这非常好 - java 中有类似的东西吗(我可以在 osgi 中运行它)吗?
As I have no knowledge of servlets+jsp's, is there a web-container that does not deal with servlets for OSGI?
Preferably for an MVC web framework of some sort. For example microsoft has ASP.NET-MVC, which is pretty nice - is there something similar in java (and can I run it within osgi)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看vaadin,它有一个附加组件vaadin-osgi。 Vaadin 作为 osgi 捆绑包发布,vaadin-osgi 为您提供了一种通过 osgi DS 将应用程序注册为 servlet 服务的方法以及其他一些细节。使用 vaadin-osgi 插件,您不需要 servlet 容器,因为它只会将 servlet 服务与您的 osgi 容器一起使用。这样您就不需要学习有关 servlet 的任何知识,因为这一切都将在幕后发生。
Take a look at vaadin which has an add-on vaadin-osgi. Vaadin is distributed as an osgi bundle out the gate, what vaadin-osgi gives you is a way to register your application as a servlet service through osgi DS along with some other niceties. With the vaadin-osgi add-on you do not need an servlet container as it will just use the servlet services with your osgi container. This way you will not need to learn a single thing about servlets as it will all happen behind the scenes.