You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
355 B
Java
16 lines
355 B
Java
package com.docus.log;
|
|
|
|
import com.docus.log.aspect.TrackGroupAspect;
|
|
import org.springframework.context.annotation.Bean;
|
|
import org.springframework.context.annotation.Configuration;
|
|
|
|
@Configuration
|
|
public class EnableTrackGroupConfiguration {
|
|
|
|
@Bean
|
|
public TrackGroupAspect logTrackGroupAspect() {
|
|
return new TrackGroupAspect();
|
|
}
|
|
|
|
}
|