Your Name
2023-06-19 09dcb5218e5a4f546783b814c861c8c05dc9a331
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.java110.job.importData;
 
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
 
@Configuration
public class ImportQueueConfig {
 
 
    @Bean
    public ImportQueue importQueue(){
        ImportQueue importQueue = new ImportQueue();
        importQueue.initExportQueue();
        return importQueue;
    }
}