spring-boot/spring-boot-project/spring-boot-cli/samples/http.groovy
dreis2211 d4eccb7715 Upgrade to Groovy 3.0.7
See gh-24946
2021-01-21 14:32:42 +00:00

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
}
}