代码提交
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
package com.mangmang;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
|
||||
|
||||
/**
|
||||
* Hello world!
|
||||
*
|
||||
*/
|
||||
@SpringBootApplication
|
||||
@EnableEurekaClient
|
||||
public class GatewayServiceApplication {
|
||||
public static void main( String[] args ) {
|
||||
SpringApplication.run(GatewayServiceApplication.class, args);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user