gpt4 book ai didi

java - @Cacheable 带有 null 键

转载 作者:行者123 更新时间:2023-12-01 11:13:13 25 4
gpt4 key购买 nike

我有一个使用 @Cacheable 来缓存方法结果的服务

getRestaurants(Boolean closed)

@Override
@Cacheable(value = "defaultCache", key = "#root.methodName.concat('-').concat(#closed")
public List<Restaurant> getRestaurants(Boolean closed) {

可以使用 close = null 调用此方法,以返回所有餐厅。这会导致空指针异常。

我们如何向键添加条件以允许空值?

最佳答案

您不能在缓存方法中允许空值并创建第二个方法getAllRestaurants。两者都可以在内部仍然分派(dispatch)到您现有的代码。

关于java - @Cacheable 带有 null 键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32130419/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com