代码之家  ›  专栏  ›  技术社区  ›  hansi

Spring缓存逐出

  •  1
  • hansi  · 技术社区  · 7 年前

    我有两种服务

    class CustomerService {
       public void removeCustomer(int customerId) {...}
    }
    
    class OrderService {
       @Cacheable("orders")
       public List<Order> getOrders() {...}
    }
    

    在…上 removeCustomer() 我想要 orders

    1 回复  |  直到 7 年前
        1
  •  1
  •   realPK    7 年前