[
https://issues.apache.org/jira/browse/FELIX-5346?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15494761#comment-15494761
]
Pierre De Rop commented on FELIX-5346:
--------------------------------------
Jago,
can you please give a try to this attached patch (the svn diff has been done in
the dependencymanager/ directory on
org.apache.felix.dependencymanager.annotation sub project).
Notice that it should also work with scala (the scanner stops scanning
inherited class if the class is "java.lang.object" or "scala/ScalaObject")
the remaining things to implement are:
1) possibly detect if the inherited class is outside the bundle of the
extension class. but I'm not sure it's possible. if it's possible then I think
an error should be thrown, in order to avoid potential issues (like BJ
explained in his post).
2) ignores inherited annotation in case they are overriden in child/extension
class
for example:
{code}
class Base {
@Start
void init() {}
}
class Extension extends Base {
@Start
void anotherStart() {}
}
{code}
currently, the patch uses the inherited @Init, not the one from the extension
class (will do that a bit later).
In the meantime, I would be interested to know if it works in your environment ?
thank you.
> Start annotation not propagated to sub classes
> ----------------------------------------------
>
> Key: FELIX-5346
> URL: https://issues.apache.org/jira/browse/FELIX-5346
> Project: Felix
> Issue Type: Improvement
> Components: Dependency Manager Annotations
> Reporter: Jago de Vreede
> Assignee: Pierre De Rop
>
> Following case in pseudocode:
> {code}Class A {
> @Start
> public void start() {
> System.out.println("start");
> }
> }
> @Component
> Class B extends A {
> }{code}
> When you run this nothing is printed but the start method in A should be
> called as B extends A.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)