I\'m learning Spring.Net and am trying something simple, which is not working. I want to log any method calls decorated with LogCall
You are using spring aop to set up logging, and this is a valid approach. There are a couple of things you have to consider:
Spring AOP uses a dynamic proxy to decorate a class with (logging) advices. This proxy intercepts calls to your object and applies the logging advice. In your class, you call the Test
method from within the class itself. This way the dynamic proxy can never intercept the call and no logging will take place.
From your config I read that you define which advice has to run (your LogCallInterceptor
) and where (methods matching your attribute), but I don't see where you define your proxy factory. Spring has to create a proxy and you have to tell it where to do it.
The aop quickstart is a good place to find out how to do this. In fact, one of the first examples is a logging example, which is very applicable to your question. I'm guessing that after reading the first part of the quickstart (chapter 38.2.1.) you'll know what to do to get this working.
Spring AOP is a powerful technique, but can be a bit hard to master at first. You're well on your way already.
Edit 1
I see you've updated your question. You're almost there, I think.
Now you're creating a SomeClass
instance directly from code. This way, Spring again doesn't get a chance to create it's proxy. You have to delegate the creation of SomeClass
to the spring container:
public MainWindow()
{
// normally speaking, we should not create the container here,
// but that's another subject
var ctx = ContexRegistry.GetContext(); // init spring container
var someClass = (SomeClass) ctx["mySomeClass"];
someClass.Test();
InitializeComponent();
}
This way, someClass
will hold the proxy instead of the target.
After this, there's one problem remaining (hint).
Edit 2
Your're Test
method has to be virtual, otherwise spring can't create an inheritance based proxy. (or your class has to implement one or more interfaces).
Configuration using auto proxy
The following app.config uses an DefaultAdvisorAutoProxyCreator
. This will make sure you don't have to create a proxy factory for each and every class you want to apply your logging advisor to. The DefaultAdvisorAutoProxyCreator
will find all objects with LogCallAttribute
s and create a proxy for them.
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<sectionGroup name="spring">
<section name="context" type="Spring.Context.Support.ContextHandler, Spring.Core" />
<section name="objects" type="Spring.Context.Support.DefaultSectionHandler, Spring.Core" />
</sectionGroup>
</configSections>
<spring>
<context>
<resource uri="config://spring/objects"/>
</context>
<objects xmlns="http://www.springframework.net">
<object id="TestLogAdvice" type="Spring.Aop.Support.AttributeMatchMethodPointcutAdvisor, Spring.Aop">
<property name="advice">
<object type="q8029460.LogCallInterceptor, q8029460" />
</property>
<property name="attribute" value="q8029460.LogCallAttribute, q8029460" />
</object>
<object id="ProxyCreator" type="Spring.Aop.Framework.AutoProxy.DefaultAdvisorAutoProxyCreator, Spring.Aop"/>
<object id="mySomeClass" type="q8029460.MyClass, q8029460" />
</objects>
</spring>
</configuration>