IN PROGRESS - BATCH-693: Refactor samples along domain contours

This commit is contained in:
robokaso
2008-07-25 11:53:45 +00:00
parent 388b372ef3
commit 27901294b3
2 changed files with 3 additions and 3 deletions

View File

@@ -27,9 +27,9 @@ import org.aspectj.lang.JoinPoint;
*
* @author Lucas Ward
*/
public class ProcessorLogAdvice {
public class LogAdvice {
private static Log log = LogFactory.getLog(ProcessorLogAdvice.class);
private static Log log = LogFactory.getLog(LogAdvice.class);
/**
* Wraps original method and adds logging both before and after method

View File

@@ -24,7 +24,7 @@
<property name="dataSource" ref="dataSource" />
</bean>
<bean id="logAdvice" class="org.springframework.batch.sample.advice.ProcessorLogAdvice" />
<bean id="logAdvice" class="org.springframework.batch.sample.advice.LogAdvice" />
<bean id="eventAdvice" class="org.springframework.batch.sample.advice.StepExecutionApplicationEventAdvice" />