Fix pointcut in logging advice

This commit is contained in:
Dave Syer
2011-04-26 09:10:38 +01:00
parent e4fa31b949
commit 2ea45451e5

View File

@@ -99,7 +99,7 @@
<aop:config>
<aop:aspect id="moduleLogging" ref="logAdvice">
<aop:after
pointcut="execution( * org.springframework.batch.item.ItemWriter+.write(Object)) and args(item)"
pointcut="execution( * org.springframework.batch.item.ItemWriter+.write(..)) and args(item)"
method="doStronglyTypedLogging" />
</aop:aspect>
<aop:aspect ref="eventAdvice">