I heaard that spring AOP is slower 30 times than aspectj.
So, I insert below code in the spring context xml.
<aop:aspectj-autoproxy />
so, is aspectj applied to?
plz let me know and any idea that can substitute aop for better performance!!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Just enables @AspectJ annotation support .The AOP runtime is still pure Spring AOP . See the following from spring reference.
If you want to use Aspectj compiler/weaver , check here .