I am under the impression that Spring-AOP is best used for application specific tasks such as security, logging, transactions, etc. as it uses custom Java5 annotations as a framework. However, AspectJ ...
The following is my pointcut and advise declaration
//PointCut on A method which takes two parameters and is in a DAO
@Pointcut("execution(backend.repository.QuestionsRepository.AnswerQuestion (..))")
public void answerQuestionPointCut() {}
@Around(
value="web.activity.advisors.UserActivityAdvisor.answerQuestionPointCut()",
argNames="question,answer"
)
...
AOP and pattern design Currently I'm doing some basic reading about the "extension object" pattern. This pattern involves a lot of technical stuff like castings from A to B, asking for ...
spring solution to observer pattern..maybe aop? I have a problem that i think points to an observer like pattern. I would appreciate input as to a good way to solve the ...
Pointcut is not well-formed: expecting 'name pattern' at character position 116 I am using Jboss 4.2.1, I create an aspect and have the followling exception when deploy in JBoss and compiled ...