You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
package com.ruoyi.system;
|
|
|
|
|
|
|
|
|
|
import org.apache.dubbo.config.spring.context.annotation.EnableDubbo;
|
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
|
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
|
|
import org.springframework.boot.context.metrics.buffering.BufferingApplicationStartup;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 系统模块
|
|
|
|
|
*
|
|
|
|
|
* @author ruoyi
|
|
|
|
|
*/
|
|
|
|
|
@EnableDubbo
|
|
|
|
|
@SpringBootApplication
|
|
|
|
|
public class RuoYiSystemApplication {
|
|
|
|
|
public static void main(String[] args) {
|
|
|
|
|
SpringApplication application = new SpringApplication(RuoYiSystemApplication.class);
|
|
|
|
|
application.setApplicationStartup(new BufferingApplicationStartup(2048));
|
|
|
|
|
application.run(args);
|
|
|
|
|
System.out.println("(♥◠‿◠)ノ゙ 系统模块启动成功 ლ(´ڡ`ლ)゙ ");
|
|
|
|
|
}
|
|
|
|
|
}
|