Reputation: 61021
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)?
Upvotes: 1
Views: 1145
Reputation: 3994
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.
Upvotes: 2