36 lines
971 B
Java
36 lines
971 B
Java
/*
|
|
* To change this license header, choose License Headers in Project Properties.
|
|
* To change this template file, choose Tools | Templates
|
|
* and open the template in the editor.
|
|
*/
|
|
package org.redkalex.cache.redis.lettuce;
|
|
|
|
import org.redkale.annotation.Priority;
|
|
import org.redkale.source.CacheSource;
|
|
import org.redkale.source.CacheSourceProvider;
|
|
import org.redkale.util.AnyValue;
|
|
|
|
/**
|
|
*
|
|
* @author zhangjx
|
|
*/
|
|
@Priority(-100)
|
|
public class RedisLettuceCacheSourceProvider implements CacheSourceProvider {
|
|
|
|
@Override
|
|
public boolean acceptsConf(AnyValue config) {
|
|
try {
|
|
Object.class.isAssignableFrom(io.lettuce.core.support.BoundedPoolConfig.class); //试图加载Lettuce相关类
|
|
return new RedisLettuceCacheSource().acceptsConf(config);
|
|
} catch (Throwable e) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public CacheSource createInstance() {
|
|
return new RedisLettuceCacheSource();
|
|
}
|
|
|
|
}
|