vote up 1 vote down star

Is implementing the Abstract Factory pattern for a spring-based project with AOP should be any different than in a normal project?

flag

18% accept rate

3 Answers

vote up 0 vote down

Depends on your AOP. If you're using AspectJ with load time or compile time weaving, then you don't have an issue. If you're using the spring based AOP, then you have an issue because spring will only put aspects onto beans it creates. Meaning that if your factory makes the bean, it won't have any AOP instrumentation

link|flag
vote up 1 vote down

It should be simpler, all things considered; technically, Spring acts like an Abstract Factory itself, and that pattern deeply informs most things that Spring "wants" you to do with it.

link|flag
This is not quite correct. Spring will not add aspects to beans that it doesn't create, so creating a factory in spring and then using the factory to create things you want to be affected by aspects will fail (assuming you're using the simple spring AOP instead of AspectJ) – Jherico Oct 21 at 0:26
vote up 0 vote down

Without a more concrete example, I'd have to say "no". Spring AOP is pretty good at working around your code, whatever structure it's in.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.