This commit is contained in:
zhouhao
2017-09-04 18:48:23 +08:00
parent 8bc5ad8cb4
commit 91c440f1b4

View File

@@ -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);
}
}