| | |
| | | import org.mybatis.spring.annotation.MapperScan; |
| | | import org.springframework.boot.SpringApplication; |
| | | import org.springframework.boot.autoconfigure.SpringBootApplication; |
| | | import org.springframework.scheduling.annotation.EnableScheduling; |
| | | import org.springframework.web.socket.config.annotation.EnableWebSocket; |
| | | import springfox.documentation.swagger2.annotations.EnableSwagger2; |
| | | |
| | | /** |
| | | * @author helius |
| | | */ |
| | | @EnableScheduling |
| | | @EnableSwagger2 |
| | | @EnableWebSocket |
| | | @SpringBootApplication |
| | | @MapperScan("com.xcong.excoin.modules.*.dao") |
| | | @MapperScan({"com.xcong.excoin.modules.*.dao", "com.xcong.excoin.common.*.dao"}) |
| | | public class ExcoinApplication { |
| | | |
| | | public static void main(String[] args) { |