diff --git a/docs/scheduled.md b/docs/scheduled.md index cdb7603da..cfd87757d 100644 --- a/docs/scheduled.md +++ b/docs/scheduled.md @@ -1,5 +1,5 @@ # 定时任务 -  @Scheduled注解在Service的方法上,实现对方法结果进行定时运行。方法必须是无参数或者```ScheduleEvent```参数。 +  @Scheduled注解在Service的方法上,实现对方法结果进行定时运行。方法必须是无参数或者```ScheduledEvent```参数。 ## 属性说明 |属性|默认值|说明| @@ -52,7 +52,7 @@ ## 使用Xxl-Job -  Schedule可以采用第三方实现, 官方扩展包```redkale-plugins```提供了xxl-job实现,且不依赖xxl-job包。 +  Scheduled可以采用第三方实现, 官方扩展包```redkale-plugins```提供了xxl-job实现,且不依赖xxl-job包。 ### pom依赖 ```xml @@ -65,13 +65,13 @@ ### 配置文件 ```xml - + port="5678" accessToken="default_token" /> - + ``` ### 使用方法