Despite having a few things left I now have enough functionality in the JAXB variety to
support what the AOPBeansSchemaInitializer does in AS 5.
The -beans.xml files using this will probably need to be modified a bit, the main thing is
that aspects with properties
| <deployment xmlns="urn:jboss:bean-deployer:2.0">
| <aop:aspect xmlns:aop="urn:jboss:aop-beans:1.0"
class="org.jboss.test.microcontainer.beans.TestAspectWithDependency">
| <property name="dependency"><inject
bean="Dependency"/></property>
| </aop:aspect>
| </deployment>
|
will need to be rewritten to
| <deployment xmlns="urn:jboss:bean-deployer:2.0">
| <aop:aspect xmlns:aop="urn:jboss:aop-beans:1.0"
class="org.jboss.test.microcontainer.beans.TestAspectWithDependency">
| <aop:property name="dependency"><aop:inject
bean="Dependency"/></aop:property>
| </aop:aspect>
| </deployment>
|
or
| <deployment xmlns="urn:jboss:bean-deployer:2.0">
| <aspect xmlns="urn:jboss:aop-beans:1.0"
class="org.jboss.test.microcontainer.beans.TestAspectWithDependency">
| <property name="dependency"><aop:inject
bean="Dependency"/></aop:property>
| </aspect>
| </deployment>
|
I created a new branch so that I would not interfere with the release last week
http://www.jboss.com/index.html?module=bb&op=viewtopic&t=132206
If you want me to do a merge to aop-mc-int trunk then let me know.
Before this will work I need releases of common-core, and jbossxb (you probably already
knew the last one :-)
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4138960#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...