yujian
2019-07-31 f4548a3ee46afe45da4ee2a42dc169c575deee9f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.yeshi.fanli.job;
 
import org.springframework.stereotype.Component;
 
import com.yeshi.fanli.util.ProxyUtil;
@Component
public class ProxyUpdateJob {
    
//    @Scheduled(cron="*/30 * * * * ? ")
    public void updateLikeCount(){
        ProxyUtil.updateProxyPool();
    }
    
}