[aspectj-users] Excpetion while trying to create an Aspect to converted Java project

2013-08-11 Thread MK
Hi, I formulated a question about a problem I experience with AJDT on Kepler at Stackoverflow and the guys there said this could be the right point of contact. My question is this one (since I don't know what further information to give besides those I already gave on stackoverflow): http://stacko

Re: [aspectj-users] Ability to exclude class loader from creating weavers for

2013-08-11 Thread Alexander Kriegisch
Just in order to double-check: It looks as if you use a unixoid OS or at least a unixoid shell like Ash or Bash. So you definitely want to escape the dollar sign by a backslash and rather write something like this: export CATALINA_OPTS="$CATALINA_OPTS -javaagent:/tmp/aspectjweaver.jar -Daj.weav

Re: [aspectj-users] Ability to exclude class loader from creating weavers for

2013-08-11 Thread Eric Benzacar
I've tried multiple different types of configurations, but cannot seem to get the class loader ignored (even if it it specified in the log output). Is there anyway to use wildcards or regex'es when specifying the classloader exceptions? If not, would there be a way to add it in? Tx, Eric On

Re: [aspectj-users] Identifying join points with generics with @AspectJ style

2013-08-11 Thread ujuarez
Hi Alexander, Thank you, the aspect works fine. -- View this message in context: http://aspectj.2085585.n4.nabble.com/Identifying-join-points-with-generics-with-AspectJ-style-tp4651074p4651076.html Sent from the AspectJ - users mailing list archive at Nabble.com. __

Re: [aspectj-users] Identifying join points with generics with @AspectJ style

2013-08-11 Thread Alexander Kriegisch
"Invalid absolute type name" kind of says it all. Try java.util.ArrayList instead. Alexander Kriegisch http://scrum-master.de Am 12.08.2013 um 01:11 schrieb ujuarez : > Hi guys, > > I’m getting the message “no match for this type name: ArrayList > [Xlint:invalidAbsoluteTypeName]” at @Before d

[aspectj-users] Identifying join points with generics with @AspectJ style

2013-08-11 Thread ujuarez
Hi guys, I’m getting the message “no match for this type name: ArrayList [Xlint:invalidAbsoluteTypeName]” at @Before declaration. My aspect: @Aspect public class Model { @Pointcut("get(ArrayList Component.a)") public void getList() {} @Before("getList()") public v