| @@ -61,6 +61,7 @@ | |||||
| <artifactId>spring-boot-maven-plugin</artifactId> | <artifactId>spring-boot-maven-plugin</artifactId> | ||||
| <configuration> | <configuration> | ||||
| <executable>true</executable> | <executable>true</executable> | ||||
| <!-- | |||||
| <layout>ZIP</layout> | <layout>ZIP</layout> | ||||
| <excludeGroupIds> | <excludeGroupIds> | ||||
| antlr, | antlr, | ||||
| @@ -178,6 +179,7 @@ | |||||
| xmlpull, | xmlpull, | ||||
| xpp3 | xpp3 | ||||
| </excludeGroupIds> | </excludeGroupIds> | ||||
| --> | |||||
| </configuration> | </configuration> | ||||
| </plugin> | </plugin> | ||||
| </plugins> | </plugins> | ||||
| @@ -114,7 +114,7 @@ fm: | |||||
| exception_emails: houtaikaifa@iformall.com | exception_emails: houtaikaifa@iformall.com | ||||
| deploy: 1 | deploy: 1 | ||||
| open: true | open: true | ||||
| upload_dir: /home/test/server/uploads/ | |||||
| upload_dir: . | |||||
| ueditor: | ueditor: | ||||
| config: config.json | config: config.json | ||||
| @@ -30,6 +30,7 @@ | |||||
| <artifactId>spring-boot-maven-plugin</artifactId> | <artifactId>spring-boot-maven-plugin</artifactId> | ||||
| <configuration> | <configuration> | ||||
| <executable>true</executable> | <executable>true</executable> | ||||
| <!-- | |||||
| <layout>ZIP</layout> | <layout>ZIP</layout> | ||||
| <excludeGroupIds> | <excludeGroupIds> | ||||
| antlr, | antlr, | ||||
| @@ -147,6 +148,7 @@ | |||||
| xmlpull, | xmlpull, | ||||
| xpp3 | xpp3 | ||||
| </excludeGroupIds> | </excludeGroupIds> | ||||
| --> | |||||
| </configuration> | </configuration> | ||||
| </plugin> | </plugin> | ||||
| </plugins> | </plugins> | ||||
| @@ -208,7 +208,7 @@ public class CouponSendSchedule { | |||||
| /** | /** | ||||
| * 生日券发放 | * 生日券发放 | ||||
| */ | */ | ||||
| @Scheduled(cron = "0 0 14 30 * ?") // 测试每天6点发券 | |||||
| @Scheduled(cron = "0 0 18 0 * ?") // 测试每天6点发券 | |||||
| public void birthdayCouponSendSchedule() { | public void birthdayCouponSendSchedule() { | ||||
| logger.info("生日发券: 任务开始"); | logger.info("生日发券: 任务开始"); | ||||
| List<WxMall> mallList = wxMallMapper.findList(new WxMall()); | List<WxMall> mallList = wxMallMapper.findList(new WxMall()); | ||||