cn.wanghaomiao.seimi.struct.CommonObject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of SeimiCrawler Show documentation
Show all versions of SeimiCrawler Show documentation
一个支持分布式的可以高效开发且可以高效运行的爬虫框架。设计思想上融合了spring与scrapy的优点。
package cn.wanghaomiao.seimi.struct;
import org.apache.commons.lang3.builder.ToStringBuilder;
import java.io.Serializable;
/**
* @author 汪浩淼 [email protected]
* @since 2015/5/31.
*/
public class CommonObject implements Serializable {
private static final long serialVersionUID = -3239260503197729552L;
@Override
public String toString() {
return ToStringBuilder.reflectionToString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy