public class Test{
public static String remoteUrl;
public static AService aService;
@Value("${remote-url}")
public void setRemoteUrl(String remoteUrl){
Test.remoteUrl=remoteUrl;
}
@Autowired
public void setAService(AService aService){
Test.aService=aService;
}
}



