+doc
parent
fd9ae6d93e
commit
5cb45af3a4
@ -1,5 +1,10 @@
|
|||||||
<html>
|
<html>
|
||||||
<body>
|
<body>
|
||||||
|
<div class="en">
|
||||||
|
Main class "Spider" and models.
|
||||||
|
</div>
|
||||||
|
<div class="zh">
|
||||||
包括webmagic入口类Spider和一些数据传递的实体类。
|
包括webmagic入口类Spider和一些数据传递的实体类。
|
||||||
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
@ -0,0 +1,18 @@
|
|||||||
|
package us.codecraft.webmagic.model.annotation;
|
||||||
|
|
||||||
|
import java.lang.annotation.ElementType;
|
||||||
|
import java.lang.annotation.Retention;
|
||||||
|
import java.lang.annotation.Target;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author code4crafter@gmail.com <br>
|
||||||
|
* Date: 13-8-16 <br>
|
||||||
|
* Time: 下午11:09 <br>
|
||||||
|
*/
|
||||||
|
@Retention(java.lang.annotation.RetentionPolicy.RUNTIME)
|
||||||
|
@Target({ElementType.FIELD, ElementType.TYPE})
|
||||||
|
public @interface ComboExtract {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue