@Asyncと同様にマークされたメソッドがある@Cacheable場合、null の場合に結果をキャッシュしないという条件は機能しますか (それが を返していると見なされますFuture) ?
@Async
@Cacheable(unless = "#result == null")
public ListenableFuture<ContentSet> doSomething(){}
@Asyncと同様にマークされたメソッドがある@Cacheable場合、null の場合に結果をキャッシュしないという条件は機能しますか (それが を返していると見なされますFuture) ?
@Async
@Cacheable(unless = "#result == null")
public ListenableFuture<ContentSet> doSomething(){}