The peaberry tag has no wiki summary.
1
vote
1answer
75 views
Dynamic REST service declaration with Jersey
I'm trying to setup an architecture based on guice, OSGI embedded in Jetty, Jersey and I would like to able to register / remove Jersey REST services dynamically. How I can get a reference to the ...
1
vote
1answer
119 views
Guice, Peaberry and ServletModule
I am having an issue getting Peaberry/Guice/OSGi/Servlets to place nice. To begin, I have been migrating a Jetty-based, WAR deployed webapp over to OSGi to leverage the plugin architecture. My ...
5
votes
1answer
280 views
Integrating Guice and OSGi services
What's the current situation with integrating Guice and OSGi? I.e. exposing OSGi services from Guice, injecting them, etc.
Peaberry's main page mentions "The Guice trunk (which will become 2.0)", ...
8
votes
2answers
343 views
Looking for Guice-to-OSGi guiding principles, experience, tips, etc
Guice is a great framework to separate API from implementation and to start modularizing your applications. OSGi is a great framework to load versioned services in their own secured environment and to ...
5
votes
2answers
732 views
What problem does Peaberry for Guice solve?
I understand the problem that OSGI solved thanks to this question....
http://stackoverflow.com/questions/106222/what-does-osgi-solve
And I am already convinved that Guice is amazing so I'm curious ...
12
votes
5answers
3k views
Implementing dynamic plugins in Java
I'd like to implement a dynamic plugin feature in a Java application. Ideally:
The application would define an interface Plugin with a method like getCapabilities().
A plugin would be a JAR ...