Blame view

cloud/server1/src/main/java/com/sincere/server1/Server1Application.java 421 Bytes
7d998aa6   陶汉栋   Merge branch 'mas...
1
package com.sincere.server1;
a94761b5   陶汉栋   no message
2
3
4
5
6

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;

6f262f5b   陶汉栋   网关服务优化
7
8
9
10
11
12
13
14
@EnableEurekaServer
@SpringBootApplication
public class Server1Application {

    public static void main(String[] args) {
        SpringApplication.run(Server1Application.class, args);
    }

a94761b5   陶汉栋   no message
15
}
7d998aa6   陶汉栋   Merge branch 'mas...

a94761b5   陶汉栋   no message

7d998aa6   陶汉栋   Merge branch 'mas...

a94761b5   陶汉栋   no message