Blame view

cloud/server2/src/main/java/com/sincere/server2/Server2Application.java 494 Bytes
7d998aa6   陶汉栋   Merge branch 'mas...
1
package com.sincere.server2;
a94761b5   陶汉栋   no message
2
3
4

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
a94761b5   陶汉栋   no message
5
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
7d998aa6   陶汉栋   Merge branch 'mas...
6
import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;
a94761b5   陶汉栋   no message
7

7d998aa6   陶汉栋   Merge branch 'mas...
8
@EnableEurekaServer
a94761b5   陶汉栋   no message
9
@SpringBootApplication
a94761b5   陶汉栋   no message
10
11
12
13
14
15
16
public class Server2Application {

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

}