wuxw
2024-04-05 09095d67f2e2acf45dcd55155da491e44206db4e
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;
    }
}