panlinlin
2020-12-31 a25f7e4f99401f842d9a0129d35011fa11930e9e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.genersoft.iot.vmp.storager;
 
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.CommandLineRunner;
import org.springframework.stereotype.Component;
 
@Component
public class VodeoMannagerTask implements CommandLineRunner {
 
    @Autowired
    private IVideoManagerStorager redisStorager;
 
    @Override
    public void run(String... strings) throws Exception {
        redisStorager.updateCatch();
    }
}