2018年3月14日

springboot定时器

摘要: @EnableScheduling //放在cheduler方法所在的类上 @Scheduled(cron = "0/20 * * * * ?") // 每20秒执行一次public void scheduler() {//执行的方法、内容在这里添加 logger.info(">>>>>>>>>>> 阅读全文

posted @ 2018-03-14 17:16 superficial。 阅读(225) 评论(0) 推荐(0) 编辑

springboot

摘要: Spring -boot 的默认端口为8080 ,要修改端口号可以修改src/main/resources下的properties文件 server.context-path=/helloboot (修改默认路径为http:locahost:8081/helloboot) server.port=8 阅读全文

posted @ 2018-03-14 12:30 superficial。 阅读(155) 评论(0) 推荐(0) 编辑

导航