vote up 1 vote down star

I'm trying to do some AOP over objects at construction time, and found IConstructorInterceptor, which would be perfect for what I want but it doesn't appear to work (in version 1.2 at least).

I've also looked at both the IObjectPostProcessor & the IInstantiationAwareObjectPostProcessor, but I can't find any way to do processing on an object around construction time... The PostProcessPropertyValues method on the IInstantiationAwareObjectPostProcessor is close, but it only passes through setter injected properties not the constructor arg values...

Specifically what I want is a reference to an object just after instantiation and at the same time, references to the objects that were injected into the constructor. Is there any way to do this, or is my best bet to just switch to setter injection & use the post processor or a MethodInterceptor?

flag
did you ever get this working? – DevelopingChris Nov 14 at 5:32
No. Unfortunately the functionality just isn't in the current version (nor in the up coming 1.3), & I never found a better work around than what I mentioned above. – Alconja Nov 16 at 12:46

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.