Reputation: 31
Currently we use OSGi framework for modular application development. But we are now planning to migrate it to springboot . Any relevant articles / tutorials / success stories on this ?
Any help would be greatly appreciated
Thanks Niyas
Upvotes: 3
Views: 2462
Reputation: 19606
I don`t think the is a simple migration path. Moving to spring boot will require changes all over the place in your application.
If you are looking into scaling in the form of microservices then this can also be done in OSGi. The enroute microservice tutorial shows how to leverage JAX-RS for REST communication and how to package your microservice into a runnable jar. This can then be easily deployed to kubernetes. See here for the code.
Upvotes: 1