
spring.turbo.bean.injection.LoggingFilePath Maven / Gradle / Ivy
package spring.turbo.bean.injection;
import org.springframework.beans.factory.annotation.Value;
import java.lang.annotation.*;
/**
* {@code @Value("${logging.file.path}")} 的快捷方式
*
* @author 应卓
* @see Value
* @since 1.1.3
*/
@Inherited
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.FIELD, ElementType.METHOD, ElementType.PARAMETER})
@Value("${logging.file.path}")
public @interface LoggingFilePath {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy