@Configuration
public interface IAbstractConvertStrategy {



   CacheService getCacheService();

   
    default boolean existedMedia(String uuid)
    {
        //重复的解析请求,丢弃
        return getCacheService().hasKey(uuid);
    }
    
    static void staticMethod() {

    }
}

 

相关文章:

  • 2021-06-27
  • 2022-12-23
  • 2022-12-23
  • 2021-07-10
  • 2022-12-23
  • 2021-06-12
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-06-30
  • 2021-12-14
  • 2021-08-13
  • 2021-09-13
  • 2021-10-05
相关资源
相似解决方案