| | |
| | | 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; |
| | | |
| | | @ConditionalOnProperty(prefix = "xxl.job.executor", value = "enable", matchIfMissing = true) |
| | | @Configuration |
| | | public class XxlJobConfig { |
| | | private Logger logger = LoggerFactory.getLogger(XxlJobConfig.class); |