This commit is contained in:
zhangchenbiao
2023-10-09 10:35:49 +08:00
parent 0bae71ac94
commit 0ff7fc974c

View File

@@ -19,6 +19,7 @@ import com.cool.store.utils.UUIDUtils;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.collections4.CollectionUtils;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.scheduling.annotation.Async;
import org.springframework.stereotype.Service;
@@ -39,8 +40,8 @@ import java.util.Objects;
@Slf4j
public class ISVHttpRequest {
//@Value("${isv.domain:null}")
private String isvDomain = "http://localhost:31100/isv";
@Value("${isv.domain:null}")
private String isvDomain;
@Resource
private HttpRestTemplateService httpRestTemplateService;