@Configuration
public interface IAbstractConvertStrategy {



   CacheService getCacheService();

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

    }
}

 

posted on 2019-11-12 16:22  你不知道的浪漫  阅读(277)  评论(0编辑  收藏  举报