2021-05-13 10:41:46 +08:00
|
|
|
package cn.lili;
|
|
|
|
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 消费者
|
|
|
|
*
|
|
|
|
* @author Chopper
|
2021-07-21 17:46:46 +08:00
|
|
|
* @since 2020/11/16 10:03 下午
|
2021-05-13 10:41:46 +08:00
|
|
|
*/
|
|
|
|
@SpringBootApplication
|
|
|
|
public class ConsumerApplication {
|
|
|
|
|
|
|
|
public static void main(String[] args) {
|
|
|
|
System.setProperty("es.set.netty.runtime.available.processors", "false");
|
|
|
|
SpringApplication.run(ConsumerApplication.class, args);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|