mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-17 12:09:16 +00:00
24 lines
449 B
Groovy
24 lines
449 B
Groovy
package org.test
|
|
|
|
import org.springframework.web.client.RestTemplate;
|
|
|
|
@Controller
|
|
class Example implements CommandLineRunner {
|
|
|
|
@Autowired
|
|
ApplicationContext context
|
|
|
|
@RequestMapping("/")
|
|
@ResponseBody
|
|
public String helloWorld() {
|
|
return "World!"
|
|
}
|
|
|
|
void run(String... args) {
|
|
def port = context.webServer.port
|
|
def world = new RestTemplate().getForObject("http://localhost:" + port + "/", String.class);
|
|
print "Hello " + world
|
|
}
|
|
|
|
}
|