views:

211

answers:

3

Please suggest some tutorial/cheatsheet for learning pointcut expression.

+2  A: 

The AspectJ programmers guide has plenty examples, looks straightforward.

skaffman
+1  A: 

AspectJ in Action is also a great source of information on AOP and AspectJ.

festerwim
A: 

Spring.Net has excellent documentation which can be downloaded from here: http://www.springframework.net/documentation.html

It has a very good general introduction to AOP and examples and sample AOP programs to get you started. Not knowing much about AOP, but knowing a bit about Spring.Net, I found this enough to get an AOP-based logging system up and running.

Alfamale