Tagged Questions

24
votes
6answers
8k views

Best way to build a Plugin system with Java

How would you implement a Plugin-system for your Java application? Is it possible to have an easy to use (for the developer) system which achieves the following: Users put their plugins into a ...
19
votes
3answers
5k views

Java plugin framework choice

We're trying to determine how to implement a simple plugin framework for a service we are implementing that allows different types of calculators to be "plugged-in". After reading a number of posts ...
14
votes
6answers
2k views

How to create a pluginable Java program?

I want to create a Java program that can be extended with plugins. How can I do that and where should I look for? I have a set of interfaces that the plugin must implement, and it should be in a jar. ...
4
votes
5answers
598 views

Best technology for adding plugin support to a J2SE application?

I'm writing a J2SE desktop application that requires one of its components to be pluggable. I've already defined the Java interface for this plugin. The user should be able to select at runtime (via ...
2
votes
1answer
141 views

How should I design a plugin system in a layered Java EE Application?

I have a Java EE based REST api application. It has a layered architecture like the following: Resources (Jax-rs resources) Object Validation Object Mapper Service Layer Repository Layer JPA ...
2
votes
3answers
110 views

How do swap implementations on a per user basis on a web application using Spring's DI

Say a web application is a central payment processing engine, where each user may have a different credit card provider that will be processing the credit card. There is an interface that all of the ...
1
vote
2answers
307 views

How to make a Java PlugIn?

I need to make my Java program as a PlugIn to OME - an Image processing web based s/w having Java API www.openmicroscopy
0
votes
3answers
673 views

java: is there a framework that allows dynamically loading and unloading of jars (but not osgi)?

I want a mechanism that will allow to dynamically load and unload jars as well as calling an activator class in the jar. I don't want to use OSGi because of the cumbersome import/export mechanism.
0
votes
2answers
153 views

Restrict Certain Java Code in a Plug-in

I am creating an application which uses the Java Plugin Framework to load plug-ins and intergrate them into the program. My question is: Is there anyway restrict certain operations (such as starting ...
0
votes
1answer
462 views

A Java Plugin Framework that supports JARs

More specifically, is there any Java plugin frameworks have all of the below features: Support for multiple JAR files JARs can be signed and/or sealed Can perform a license check for each JAR prior ...