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

com.justz.lock.annotation.EnableLock Maven / Gradle / Ivy

The newest version!
package com.justz.lock.annotation;

import org.springframework.context.annotation.AdviceMode;
import org.springframework.context.annotation.Import;
import org.springframework.core.Ordered;

import java.lang.annotation.*;

/**
 * Enables annotation-driven lock management capability
 */
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Import(LockConfigurationSelector.class)
public @interface EnableLock {


    /**
     * Indicate whether subclass-based (CGLIB) proxies are to be created as opposed
     * to standard Java interface-based proxies. The default is {@code false}. 
     * Applicable only if {@link #mode()} is set to {@link AdviceMode#PROXY}.
     * 

Note that setting this attribute to {@code true} will affect all * Spring-managed beans requiring proxying, not just those marked with {@code @Lock}. * For example, other beans marked with Spring's {@code @Transactional} annotation will * be upgraded to subclass proxying at the same time. This approach has no negative * impact in practice unless one is explicitly expecting one type of proxy vs another, * e.g. in tests. */ boolean proxyTargetClass() default false; /** * Indicate how lock advice should be applied. The default is * {@link AdviceMode#PROXY}. * @see AdviceMode */ AdviceMode mode() default AdviceMode.PROXY; /** * Indicate the ordering of the execution of the lock advisor * when multiple advices are applied at a specific joinpoint. * The default is {@link Ordered#LOWEST_PRECEDENCE - 1}. */ int order() default Ordered.LOWEST_PRECEDENCE - 1; }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy