|
@@ -1,6 +1,6 @@
|
|
package cn.com.qmth.examcloud.bridge;
|
|
package cn.com.qmth.examcloud.bridge;
|
|
|
|
|
|
-import cn.com.qmth.examcloud.web.bootstrap.AppBootstrap;
|
|
|
|
|
|
+import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
|
|
import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
|
|
import org.springframework.context.annotation.ComponentScan;
|
|
import org.springframework.context.annotation.ComponentScan;
|
|
@@ -32,7 +32,8 @@ public class BridgeApp {
|
|
* @author WANGWEI
|
|
* @author WANGWEI
|
|
*/
|
|
*/
|
|
public static void main(String[] args) {
|
|
public static void main(String[] args) {
|
|
- AppBootstrap.run(BridgeApp.class, args);
|
|
|
|
|
|
+ // AppBootstrap.run(BridgeApp.class, args);
|
|
|
|
+ SpringApplication.run(BridgeApp.class, args);
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
}
|