Decebal Suiu
Decebal Suiu
Please take a look at [pf4j-wicket](https://github.com/pf4j/pf4j-wicket). Maybe you can match `pf4j-spring` with `pf4j-wicket`. By the way, I used Wicket in the past with a real success and pleasure. It's a...
@m-schroeer First of all I'm sorry for delay and thanks for the beautiful description of issue. I see an interest in the solution supplied by you. In my projects I...
I don't know how I can help here. The `pf4j-spring` is very tiny and easy to hack. All the business is available in two classes: SpringExtensionFactory and ExtensionsInjector. The extension...
Maybe [this](https://stackoverflow.com/questions/48002505/how-to-dynamic-register-spring-bean-and-set-as-primary) link helps.
In [GreetingsController](https://github.com/claymccoy/Pf4jSpringGreetingDemo/blob/master/src/main/java/org/pf4j/demo/GreetingsController.java#L16) you say: > This works with just the system extension, but fails with more than one even when one is marked `@Primary` Yes, this behavior is normal (with...
Maybe an idea is to use the **meta annotation** concept from Spring (for more details see [this](https://stackoverflow.com/questions/7846103/customised-annotation-in-spring)). On the master branch of PF4J there is already support for the extensively...
From log: ``` 2017-12-06 19:25:05,724 DEBUG org.pf4j.AbstractExtensionFinder - org.pf4j.demo.hello.HelloPlugin$HelloGreeting 2017-12-06 19:25:05,724 DEBUG org.pf4j.spring.ExtensionsInjector - Register extension 'org.pf4j.demo.WhazzupGreeting' as bean 2017-12-06 19:25:05,735 INFO org.pf4j.spring.ExtensionsInjector - Registering org.pf4j.demo.WhazzupGreeting with scope: prototype 2017-12-06...
I see a problem when we try to add scope on `HelloGreeting` (an extension of `Greeting` from `HelloPlugin`). `HelloPlugin` extends `SpringPlugin`, so it comes with an plugin context (application context)...
@goto100 After I reread my last/previous [comment](https://github.com/pf4j/pf4j-spring/pull/6#issuecomment-349784007), I see that is a problem in some scenario and from this reason probably I didn't merge this PR to master. I don't...
They are some issues that make reference to Eclipse: - https://github.com/pf4j/pf4j/issues/258 - https://github.com/pf4j/pf4j/issues/249 For no extensions issue: - https://github.com/pf4j/pf4j/issues/249#issuecomment-444063866 - https://github.com/pf4j/pf4j/issues/21#issuecomment-53316320 I don't use Eclipse in my projects so I...