com.xuxueli.crawler.annotation.PageSelect Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xxl-crawler Show documentation
Show all versions of xxl-crawler Show documentation
A distributed web crawler framework.
The newest version!
package com.xuxueli.crawler.annotation;
import java.lang.annotation.*;
/**
* page vo annotation
*
* 页面数据对象 注解
*
* @author xuxueli 2017-10-17 20:28:11
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
@Documented
public @interface PageSelect {
/**
* CSS-like query, like "#body"
*
* CSS选择器, 如 "#body"
*
* @return String
*/
public String cssQuery() default "";
}