1

How can I write a pluggable java application. I read about OSGI and some other plugin frameworks but I want to do that me myself. Is there any easy way to write what I want?

RayanFar
  • 539
  • 11
  • 28
  • 1
    yes, but it depends on what you requirements are. You can add a jar to the class path at runtime and load a class from that new jar via reflection. – Peter Lawrey Aug 09 '15 at 21:22

1 Answers1

5

Yes you can write your own plugins framework with some reflection. This link might be helpful. Creating Extensible Applications

Fahim Farook
  • 1,482
  • 2
  • 14
  • 38