io.lazyegg.core.exception.CatchLogAutoConfiguration Maven / Gradle / Ivy
package io.lazyegg.core.exception;
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.EnableAspectJAutoProxy;
/**
* @ Description :
* @ Author : Frank Zhang
* @ CreateDate : 2020/11/09
* @ Version : 1.0
*/
@Configuration
@EnableAspectJAutoProxy
public class CatchLogAutoConfiguration {
@Bean
@ConditionalOnMissingBean(CatchLogAspect.class)
public CatchLogAspect catchLogAspect() {
return new CatchLogAspect();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy