Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[aspectj-users] loadtime weaving problem

I am trying to use load time weaving in the JBoss Application Server. It
is functioning, however he has a aspect that I would like to ignore.
This aspect belongs to a hierarchy of aspects and pointcut of the
abstract aspect is being linked on it. I want that pointcut either
linked on to another aspect concrete. 

This is the code that I tried in META-INF/aop.xml file:

<aop>

...
	<aspect
name="aspects.dataManagement.persistent.DataCollectionPersistent" /> 



		<aspect

name="aspects.dataManagement.nonpersistent.DataCollectionNonPersistent" />

...

		<exclude
within="aspects.dataManagement.persistent.DataCollectionPersistent"/>

</aop>



Back to the top