반응형
#spring boot 에서 static가 아닌 경우
@Value("${g2b.receiveUrl}")
private String receiveUrl;
#spring boot 에서 static인 경우
public static String receiveUrl;
@Value("${g2b.receiveUrl}")
public void setReceiveUrl(String receiveUrl) {
BidApi.receiveUrl = receiveUrl;
}
반응형