All Downloads are FREE. Search and download functionalities are using the official Maven repository.

love.keeping.starter.web.components.redis.locker.RedisLockConditional Maven / Gradle / Ivy

The newest version!
package love.keeping.starter.web.components.redis.locker;

import org.springframework.context.annotation.Condition;
import org.springframework.context.annotation.ConditionContext;
import org.springframework.core.type.AnnotatedTypeMetadata;

public class RedisLockConditional implements Condition {

  @Override
  public boolean matches(ConditionContext context, AnnotatedTypeMetadata metadata) {

    String lockerType = context.getEnvironment().getProperty("keeping.locker.type");
    return "redis".equalsIgnoreCase(lockerType);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy