package com.gxwebsoft; import com.gxwebsoft.common.core.config.ConfigProperties; import org.mybatis.spring.annotation.MapperScan; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.context.properties.EnableConfigurationProperties; import org.springframework.scheduling.annotation.EnableAsync; import org.springframework.scheduling.annotation.EnableScheduling; import org.springframework.transaction.annotation.EnableTransactionManagement; /** * 启动类 * Created by WebSoft on 2018-02-22 11:29:03 */ @EnableAsync @EnableTransactionManagement @MapperScan("com.gxwebsoft.**.mapper") @EnableConfigurationProperties(ConfigProperties.class) @SpringBootApplication @EnableScheduling public class WebSoftApplication { public static void main(String[] args) { SpringApplication.run(WebSoftApplication.class, args); } }