Bumping versions

This commit is contained in:
buildmaster
2020-09-17 05:29:17 +00:00
parent ff44daa2bd
commit 05461159eb
276 changed files with 2590 additions and 4452 deletions

View File

@@ -32,8 +32,7 @@ import org.springframework.web.client.RestTemplate;
*
*/
@MessageEndpoint
public class SampleService
implements ApplicationListener<ServletWebServerInitializedEvent> {
public class SampleService implements ApplicationListener<ServletWebServerInitializedEvent> {
private static final Log log = LogFactory.getLog(SampleService.class);
@@ -45,8 +44,7 @@ public class SampleService
@ServiceActivator(inputChannel = "messages")
public void log(Message<?> message) {
log.info("Received: " + message);
this.restTemplate.getForObject("http://localhost:" + this.port + "/foo",
String.class);
this.restTemplate.getForObject("http://localhost:" + this.port + "/foo", String.class);
}
@Override