You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
webcrawler/core/src/main/java/org/pqh/core/annotation/EnableWebCrawlerConfigurati...

15 lines
317 B

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