package org.pqh.core.annotation; import org.springframework.context.annotation.ComponentScan; import org.springframework.context.annotation.Configuration; import java.lang.annotation.*; /** * 爬虫注入组件 */ @Retention(RetentionPolicy.RUNTIME) @Target({ElementType.TYPE}) @Documented @Configuration @ComponentScan("org.pqh.core.*") public @interface EnableWebCrawlerConfiguration { }