java110
2023-06-05 3da0feec9d4825c7ee18eaf948d0f7d5d206eca4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;
    }
}