Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[aspectj-users] Re: another 'noaspectboundexception: exception while initializing ....'. plz help

Oh...Here are my trivial advices if they may contribute to my exception.

	before():POJOPC() {
		String className =
thisJoinPointStaticPart.getSignature().getDeclaringTypeName();
		String methName = thisJoinPointStaticPart.getSignature().getName();
		System.out.println("before:className " + className);
		System.out.println("before: methName " + methName);
	}

	after():POJOPC() {
		String className =
thisJoinPointStaticPart.getSignature().getDeclaringTypeName();
		String methName = thisJoinPointStaticPart.getSignature().getName();
		System.out.println("after:className " + className);
		System.out.println("after: methName " + methName);
	}
Sorry. Forgot to include them in earlier post.
-- 
View this message in context: http://aspectj.2085585.n4.nabble.com/another-noaspectboundexception-exception-while-initializing-plz-help-tp2328492p2328501.html
Sent from the AspectJ - users mailing list archive at Nabble.com.


Back to the top