摘要:
调试接口时候,Missing URI template variable '币种ID' for method parameter of type int。 1 @ApiOperation(value = "销毁金额") 2 @PostMapping("/destroy/{currency_id}") 阅读全文
摘要:
本节探讨定时任务,定时任务的应用场景是非常多的,比如: 闹钟程序或任务提醒,指定时间叫床或在指定日期提醒还信用卡 监控系统,每隔一段时间采集下系统数据,对异常事件报警 统计系统,一般凌晨一定时间统计昨日的各种数据指标 在Java中,有两种方式实现定时任务: 使用java.util包中的Timer和T 阅读全文