Skip to content

Instantly share code, notes, and snippets.

@olbpetersson
Created December 7, 2017 21:24
Show Gist options
  • Save olbpetersson/b12d40e97eff5610da8b5d2fa162dea6 to your computer and use it in GitHub Desktop.
Save olbpetersson/b12d40e97eff5610da8b5d2fa162dea6 to your computer and use it in GitHub Desktop.
@RestController
@RequestMapping("/hello")
public class HelloWorldController {
@Autowired
private HelloWorldService helloWorldService;
@GetMapping
public Mono<String> helloWorld() {
return helloWorldService.getHelloWorld();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment