[jboss-dev-forums] [Design the new POJO MicroContainer] - Re: Moving parsing to JBossXB.Builder/JAXB

kabir.khan@jboss.com do-not-reply at jboss.com
Wed Mar 26 09:07:54 EDT 2008


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#4138960

Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4138960



More information about the jboss-dev-forums mailing list