| | |
| | | import org.slf4j.Logger; |
| | | import org.slf4j.LoggerFactory; |
| | | import org.springframework.beans.factory.annotation.Value; |
| | | import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty; |
| | | import org.springframework.context.annotation.Bean; |
| | | import org.springframework.context.annotation.Configuration; |
| | | |
| | |
| | | * |
| | | * @author liyh |
| | | */ |
| | | @Configuration |
| | | @Configuration(proxyBeanMethods = false) |
| | | @ConditionalOnProperty(value = "xxl.enabled") |
| | | public class XxlJobConfig { |
| | | private Logger logger = LoggerFactory.getLogger(XxlJobConfig.class); |
| | | |