|
@@ -1,6 +1,6 @@
|
|
|
package cn.com.qmth.examcloud.core.reports.starter;
|
|
|
|
|
|
-import cn.com.qmth.examcloud.web.bootstrap.AppBootstrap;
|
|
|
+import org.springframework.boot.SpringApplication;
|
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
import org.springframework.boot.autoconfigure.domain.EntityScan;
|
|
|
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
|
|
@@ -27,8 +27,8 @@ public class CoreReportsApp {
|
|
|
}
|
|
|
|
|
|
public static void main(String[] args) throws Exception {
|
|
|
-
|
|
|
- AppBootstrap.run(CoreReportsApp.class, args);
|
|
|
+ // AppBootstrap.run(CoreReportsApp.class, args);
|
|
|
+ SpringApplication.run(CoreReportsApp.class, args);
|
|
|
}
|
|
|
|
|
|
}
|