- 
        1. Re: KernelDeploymentDeployer and annotations in MDRalesj Dec 2, 2008 1:06 PM (in response to starksm64)
- 
        2. Re: KernelDeploymentDeployer and annotations in MDRadrian.brock Dec 2, 2008 1:46 PM (in response to starksm64)But wouldn't it make more sense if the deployment annotations 
 went into the DEPLOYMENT scope rather than the INSTANCE scope?
 i.e. there is no merge, just the normal overrides by scope
 This would also allow some other deployer to modify them.
 I didn't remember adding annotations to kernel deployments :-)
 so I went back to the original change
 http://viewvc.jboss.org/cgi-bin/viewvc.cgi/jbossas?view=rev&revision=60491
 and from the date of that located the forum thread
 http://www.jboss.com/index.html?module=bb&op=viewtopic&t=100349
 The issue appears to be that for the plain deployment,
 we don't necessarily have the classloader from which we can
 create the annotations. e.g.<deployment> <classloader><inject name="BeanConstructedLaterOrInThisFile"></classloader> <annotation>@from.that.Classloader</annotation> </deployment> 
 This could in principle also apply to the VDF,
 but more often than not we can use the DeploymentUnit's classloader.
- 
        3. Re: KernelDeploymentDeployer and annotations in MDRstarksm64 Dec 2, 2008 1:58 PM (in response to starksm64)The current issue is that I do not see a deployment level annotation such as the following: <deployment xmlns="urn:jboss:bean-deployer:2.0"> <annotation>@org.jboss.managed.api.annotation.ManagementDeployment(description="JBossSX Security Beans")</annotation> ... 
 when creating the MangedObject for the KernelDeployment attachment in the KernelDeployment's DeplomentUnit MetaData. This annotation should not be pushed down to the component BeanMetaData.
- 
        4. Re: KernelDeploymentDeployer and annotations in MDRstarksm64 Dec 2, 2008 3:23 PM (in response to starksm64)"adrian@jboss.org" wrote: 
 The issue appears to be that for the plain deployment,
 we don't necessarily have the classloader from which we can
 create the annotations. e.g.<deployment> <classloader><inject name="BeanConstructedLaterOrInThisFile"></classloader> <annotation>@from.that.Classloader</annotation> </deployment> 
 It could create a static MetaDataLoader if the class loader was not a bean or a bean that was available, otherwise how could a MetaDataLoader that was a bean be integrated into the deployment MetaData view?
- 
        5. Re: KernelDeploymentDeployer and annotations in MDRadrian.brock Dec 4, 2008 7:07 AM (in response to starksm64)"scott.stark@jboss.org" wrote: "adrian@jboss.org" wrote: 
 The issue appears to be that for the plain deployment,
 we don't necessarily have the classloader from which we can
 create the annotations. e.g.<deployment> <classloader><inject name="BeanConstructedLaterOrInThisFile"></classloader> <annotation>@from.that.Classloader</annotation> </deployment> 
 It could create a static MetaDataLoader if the class loader was not a bean or a bean that was available, otherwise how could a MetaDataLoader that was a bean be integrated into the deployment MetaData view?
 Yes that would be one possiblity. i.e. we create an artifical bean
 that is responsible for populating the annotations in the DEPLOYMENT scope.
 The other beans in the deployment would have to depend on it at the
 PRE_INSTALL stage so they can see the correct annotations.
 But that might create a circular dependency where the classloader for the
 deployment is a bean within the deployment. Normally we allow you
 to workaround the issue by adding<classloader><null/></classloader> 
 (e.g. the VFS classloader stuff used in the bootstrap xml does this implicitly)
 to that bean so we could possibly use the same to indicate that it shouldn't
 wait for the deployment level annotations to get set up.
 
     
    