springboot 初始化静态变量

@Component
@Slf4j
public class TestUtil {
    private static String VARENV;

    @Value("${spring.test.env}")
    public void setApacheVarenv(String varenv) {
        TestUtil.VARENV = varenv;
    }
}

 

你可能感兴趣的:(server)