gtsoft-snail-job-server/example/src/main/java/com/example/demo/TestRetryMethodService.java
byteblogs168 a731ad70e2 feat: 1.0.0
修改example模块内的包路径
2023-04-21 09:08:00 +08:00

20 lines
435 B
Java

package com.example.demo;
import com.aizuda.easy.retry.client.core.annotation.Retryable;
import org.springframework.stereotype.Component;
/**
* @author: www.byteblogs.com
* @date : 2022-03-07 14:06
*/
@Component
public class TestRetryMethodService {
@Retryable(scene = "testRetryMethod", retryMethod = MyRetryMethod.class)
public String testRetryMethod(String p) {
return "测试自定义重试方法";
}
}