package com.arms.api.util.aspect;

import lombok.Getter;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.cloud.context.config.annotation.RefreshScope;
import org.springframework.stereotype.Component;

@Getter
@Component
@RefreshScope
public class AppProperty {
    // LoggingAdvice 에 쓰기 위해 분리
    @Value("${spring.application.name}")
    private String applicationName;
}
