5

SpringBoot アプリケーションの Service に簡単なメソッドがあります。@Retryable を使用して、そのメソッドの再試行メカニズムをセットアップしました。
サービス内のメソッドの統合テストを試みていますが、メソッドが例外をスローしたときに再試行が行われません。メソッドは 1 回だけ実行されます。

public interface ActionService { 

@Retryable(maxAttempts = 3, backoff = @Backoff(delay = 2000))
public void perform() throws Exception;

}



@Service
public class ActionServiceImpl implements ActionService {

@Override   
public void perform() throws Exception() {

   throw new Exception();
  } 
}



@SpringBootApplication
@Import(RetryConfig.class)
public class MyApp {

public static void main(String[] args) throws Exception {
    SpringApplication.run(MyApp.class, args);
  }
}



@Configuration
@EnableRetry
public class RetryConfig {

@Bean
public ActionService actionService() { return new ActionServiceImpl(); }

}



@RunWith(SpringJUnit4ClassRunner.class)
@SpringApplicationConfiguration( classes= {MyApp.class}) 
@IntegrationTest({"server.port:0", "management.port:0"})
public class MyAppIntegrationTest {

@Autowired
private ActionService actionService;

public void testAction() {

  actionService.perform();

}
4

2 に答える 2

0

Biju このリンクを貼ってくれてありがとう。多くの疑問を解決するのに役立ちました。私が別途しなければならなかった唯一のことは、Spring xml ベースのアプローチで 'retryAdvice' を Bean として追加しなければならなかったことです。これらを以下に追加した後、動作させることができました。

    <bean id="retryAdvice"
    class="org.springframework.retry.interceptor.RetryOperationsInterceptor">
</bean>

<context:annotation-config />
<aop:aspectj-autoproxy />
于 2016-06-22T18:43:41.577 に答える