zhouhao 7 years ago
parent
commit
91c440f1b4

+ 0 - 20
hsweb-system/hsweb-system-workflow/hsweb-system-workflow-flowable/src/main/java/org/hswebframework/web/workflow/Application.java

@@ -1,20 +0,0 @@
-package org.hswebframework.web.workflow;
-
-import org.hswebframework.web.dao.Dao;
-import org.mybatis.spring.annotation.MapperScan;
-import org.springframework.boot.SpringApplication;
-import org.springframework.boot.autoconfigure.SpringBootApplication;
-import org.springframework.context.annotation.ComponentScan;
-
-/**
- * @author zhouhao
- */
-@SpringBootApplication
-@ComponentScan("org.hswebframework.web.workflow")
-@MapperScan(value = "org.hswebframework.web.workflow", markerInterface = Dao.class) //扫描mybatis dao
-public class Application {
-    public static void main(String[] args) {
-        SpringApplication.run(Application.class);
-    }
-}
-