#
vincentlu
2025-02-17 0158ee3c96d9f8de7de2b7cbc8e5efb4f78a8ec7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.zy.acs.eureka;
 
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;
 
@EnableEurekaServer
@SpringBootApplication
public class EurekaBoot {
 
    public static void main(String[] args) {
        SpringApplication.run(EurekaBoot.class, args);
    }
}