I am reading the book "Professional Java Development with the Spring Framework", on page 147, it says "It's not possible to automatically proxy an object created using the new operator using Spring AOP. if you need to do this - for example, to advise large numbers of fine-grained objects- consider using AspectJ or AspectWekz as alternative to Spring's own AOP framework".
Aren't most objects in Spring created using the new operator (other than the one created by FactoryBeans)? I'm confused here...


Reply With Quote