| | |
| | | * @author stylefeng |
| | | * @Date 2017/5/21 12:06 |
| | | */ |
| | | @MapperScan("com.stylefeng.guns.modular.*.dao") |
| | | @EnableScheduling//开启定时任务 |
| | | @SpringBootApplication |
| | | public class GunsApplication { |
| | |
| | | private final static Logger logger = LoggerFactory.getLogger(GunsApplication.class); |
| | | |
| | | public static void main(String[] args) { |
| | | try{ |
| | | SpringApplication.run(GunsApplication.class, args); |
| | | logger.info("GunsApplication is success!"); |
| | | }catch (Exception e){ |
| | | e.printStackTrace(); |
| | | } |
| | | SpringApplication.run(GunsApplication.class, args); |
| | | logger.info("GunsApplication is success!"); |
| | | } |
| | | |
| | | @Bean //通过ip地址调用 |