java110
2022-10-20 a19751ee3e60822a6459e78fe56b7e5df9ffe793
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.java110.job.export;
 
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
 
@Configuration
public class ExportQueueConfig {
 
 
 
 
 
    @Bean
    public ExportQueue exportQueue(){
        ExportQueue exportQueue = new ExportQueue();
        exportQueue.initExportQueue();
        return exportQueue;
    }
}