AdaKing88
2023-08-23 ae35159387a55199e8ab150ebb97d89d68a235bd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package org.jeecg.monitor;
 
import de.codecentric.boot.admin.server.config.EnableAdminServer;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
 
/**
 * 监控服务
 * @author zyf
 * @date: 2022/4/21 10:55
 */
@SpringBootApplication
@EnableAdminServer
public class JeecgMonitorApplication {
    public static void main(String[] args) {
        SpringApplication.run(JeecgMonitorApplication.class, args);
    }
}