admin
2022-01-12 c9fdff7d45ae118eac10397d8f34661e9f2e968a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package com.ks.lijin.config;
 
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.context.annotation.Configuration;
 
@Configuration
public class CMQConsumeConfig {
 
    Logger log = LoggerFactory.getLogger(CMQConsumeConfig.class);
//
//
//    @Bean(initMethod = "start", destroyMethod = "destroy")
//    public CMQConsumeRunner activityConsumer() {
//        CMQConsumeRunner runner = new ActivityConsumer();
//        return runner;
//    }
//
//    @Bean(initMethod = "start", destroyMethod = "destroy")
//    public CMQConsumeRunner recieveOutDateConsumer() {
//        CMQConsumeRunner runner = new AcitivtyDrawnRecieveOutDateConsumer();
//        return runner;
//    }
//
//    @Bean(initMethod = "start", destroyMethod = "destroy")
//    public CMQConsumeRunner job() {
//        CMQConsumeRunner runner = new JobConsumer();
//        return runner;
//    }
 
 
}