Hi,
I am creating a modular web application using Spring Dynamic Modules and OSGI.
And using equinox for the osgi implementation
I have created a sample application following the explanation in a book.
Now what I want to do is
I want to create different bundles according to each module.
How can i achieve this ?
Like suppose my application has two modules one is the login module and second is the User module.
How should the bundles be created than ?
My login module may have some
jsp pages,a application context, a dispatcher
servlet, controllers and some business classes.
Similarly my User module may have some jsp pages,a application context, a dispatcher servlet, controllers and some business classes.
And i guess i would have only one web.xml file for the whole application
How can i make the dispatcher servlet of the bundles available in the web.xml file?