You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
459 B
18 lines
459 B
package com.java3y.austin;
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
|
|
|
/**
|
|
* @author 3y
|
|
*/
|
|
@SpringBootApplication
|
|
public class AustinApplication {
|
|
public static void main(String[] args) {
|
|
// TODO apollo的地址.
|
|
System.setProperty("apollo.config-service", "http://119.91.205.248:7000");
|
|
SpringApplication.run(AustinApplication.class, args);
|
|
}
|
|
}
|