com.suchtool.nicelock.annotation.EnableNiceLock Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nicelock-spring-boot-starter Show documentation
Show all versions of nicelock-spring-boot-starter Show documentation
nice distribution lock for SpringBoot project
package com.suchtool.nicelock.annotation;
import com.suchtool.nicelock.configuration.NiceLockConfigurationSelector;
import org.springframework.context.annotation.Import;
import org.springframework.core.Ordered;
import java.lang.annotation.*;
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Import(NiceLockConfigurationSelector.class)
public @interface EnableNiceLock {
int order() default Ordered.LOWEST_PRECEDENCE;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy