2017-01-05 18:14:55 +01:00

15 lines
336 B
Java

package com.baeldung;
import org.junit.Test;
import org.springframework.web.client.RestTemplate;
public class DataLoaderLiveTest {
@Test
public void exampleTest() {
RestTemplate restTemplate = new RestTemplate();
restTemplate.getForObject("http://localhost:8080/startNotification/10", String.class);
}
}