@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(){}