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

spring.turbo.bean.injection.ApplicationProcessUser Maven / Gradle / Ivy

The newest version!
package spring.turbo.bean.injection;

import org.springframework.beans.factory.annotation.Value;

import java.lang.annotation.*;

/**
 * {@code @Value("${spring.process.user}")} 的快捷方式
 *
 * @author 应卓
 * @see Value
 * @since 3.3.1
 */
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.FIELD, ElementType.METHOD, ElementType.PARAMETER})
@Value("${spring.process.user:}")
public @interface ApplicationProcessUser {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy